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

10 lines
212 B
C#

namespace NetworkResurrector.Domain.Entities
{
public class User
{
public int Id { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}
}