using System; using System.Collections.Generic; namespace Tanshu.Accounts.Entities { public class User { public Guid UserID { get; set; } public string Name { get; set; } public string MsrString { get; set; } public string Password { get; set; } public bool LockedOut { get; set; } public List Roles { get; set; } public List Permissions { get; set; } public User() { Roles = new List(); Permissions = new List(); } } }