20 lines
538 B
C#
20 lines
538 B
C#
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<ContentLockerObjectModel> Data { get; set; }
|
|
public int Total { get; set; }
|
|
}
|
|
} |