Files
WorkStation/WorkStation.Server/Context/Entity/User.cs

9 lines
190 B
C#

namespace WorkStation.Server.Context.Entity
{
public class User : BaseEntity
{
public string? Account { get; set; }
public string? Password { get; set; }
}
}