using System; using System.Collections.Generic; namespace EnVisage.Models { public class ContentLockerObjectModel { public string EntityType { get; set; } public Guid EntityId { get; set; } public string EntityTitle { get; set; } public string Owner { get; set; } public DateTime ReleaseTimeUTC { get; set; } } public class ContentLockerObjectListModel { public IEnumerable Data { get; set; } public int Total { get; set; } } }