namespace Oqtane.Models { public class SiteGroupDefinition : ModelBase { /// /// ID to identify the group /// public int SiteGroupDefinitionId { get; set; } /// /// Name of the group /// public string Name { get; set; } /// /// SiteId of the primary site in the group /// public int PrimarySiteId { get; set; } /// /// Indicates if the group supports synchronization /// public bool Synchronization { get; set; } /// /// Specifies if the group needs to be synchronized /// public bool Synchronize { get; set; } /// /// Indicates if the group supports localization /// public bool Localization { get; set; } } }