nove verzije

This commit is contained in:
David Štaleker
2024-08-02 11:00:59 +02:00
parent edab522e0e
commit ca229fbd89
8 changed files with 491 additions and 157 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace InfosysPublisher.Classes
{
internal class User
{
public int Id { get; set; }
public string Name { get; set; }
public string Surname { get; set; }
public string Username { get; set; }
}
}