introducing Site Groups
This commit is contained in:
35
Oqtane.Shared/Models/SiteGroupDefinition.cs
Normal file
35
Oqtane.Shared/Models/SiteGroupDefinition.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
namespace Oqtane.Models
|
||||
{
|
||||
public class SiteGroupDefinition : ModelBase
|
||||
{
|
||||
/// <summary>
|
||||
/// ID to identify the group
|
||||
/// </summary>
|
||||
public int SiteGroupDefinitionId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Name of the group
|
||||
/// </summary>
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// SiteId of the primary site in the group
|
||||
/// </summary>
|
||||
public int PrimarySiteId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Indicates if the group supports synchronization
|
||||
/// </summary>
|
||||
public bool Synchronization { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Specifies if the group needs to be synchronized
|
||||
/// </summary>
|
||||
public bool Synchronize { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Indicates if the group supports localization
|
||||
/// </summary>
|
||||
public bool Localization { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user