using System; using System.Runtime.Serialization; namespace Tanshu.Accounts.Contracts { public class UserBO { public Guid UserID { get; set; } public string Name { get; set; } public string Password { get; set; } public bool LockedOut { get; set; } } }