temperature-alarm/backend/Api/Models/User/User.cs

18 lines
333 B
C#

namespace Api.Models.User
{
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; }
}
}