using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace Oqtane.Models
{
public class SiteGroupMember : ModelBase
{
///
/// ID to identify the site group
///
public int SiteGroupMemberId { get; set; }
///
/// Reference to the .
///
public int SiteGroupId { get; set; }
///
/// Reference to the .
///
public int SiteId { get; set; }
///
/// The last date/time the site was synchronized
///
public DateTime? SynchronizedOn { get; set; }
///
/// The itself.
///
public SiteGroup SiteGroup { get; set; }
///
/// The primary alias for the site
///
[NotMapped]
public string AliasName { get; set; }
}
}