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 (null = no, false = compare, true = update)
///
public bool? Synchronization { get; set; }
///
/// Indicates if the site administrator should be notified of any synchronization activity
///
public bool Notify { 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; }
}
}