20 lines
421 B
C#
20 lines
421 B
C#
namespace LaaProductionWeb.Services.Models.Software
|
|
{
|
|
public class SoftwareUser
|
|
{
|
|
public short Id { get; set; }
|
|
|
|
public string FirstName { get; set; }
|
|
|
|
public string LastName { get; set; }
|
|
|
|
public string Username { get; set; }
|
|
|
|
public int FunctionsCount { get; set; }
|
|
|
|
public bool HasPassword { get; set; }
|
|
|
|
public string Functions { get; set; }
|
|
}
|
|
}
|