using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.DTO; namespace Tango.FSE.BL.CacheEntities { /// /// Represents a a cached user entity. /// /// public class CachedUser : UserDTO { public OrganizationDTO Organization { get; set; } } }