namespace Oqtane.Models { public class SiteGroup : ModelBase { /// /// ID to identify the group /// public int SiteGroupId { get; set; } /// /// Name of the group /// public string Name { get; set; } /// /// Group type ie. Synchronization, Localization /// public string Type { get; set; } /// /// SiteId of the primary site in the group /// public int PrimarySiteId { get; set; } /// /// Specifies if the group should be synchronized /// public bool Synchronize{ get; set; } } }