18 lines
328 B
C#
18 lines
328 B
C#
namespace Api.Models
|
|
{
|
|
public class User
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string UserName { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
|
|
public string Email { get; set; }
|
|
|
|
public string? Salt { get; set; }
|
|
|
|
public List<Device>? Devices { get; set; }
|
|
}
|
|
}
|