9 lines
190 B
C#
9 lines
190 B
C#
|
namespace WorkStation.Server.Context.Entity
|
|||
|
{
|
|||
|
public class User : BaseEntity
|
|||
|
{
|
|||
|
public string? Account { get; set; }
|
|||
|
public string? Password { get; set; }
|
|||
|
}
|
|||
|
}
|