network-resurrector/NetworkResurrector.Domain/Entities/User.cs

10 lines
216 B
C#
Raw Normal View History

namespace NetworkResurrector.Domain.Entities
{
public class User
{
2020-07-10 00:29:39 +03:00
public int UserId { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}
}