namespace Oqtane.Models { /// /// API management /// public class Api { /// /// Reference to a /// public int SiteId { get; set; } /// /// The Entity Name /// public string EntityName { get; set; } /// /// The permissions for the entity /// public string Permissions { get; set; } } }