17 lines
343 B
C#
17 lines
343 B
C#
using DomainObjects.Abstractions;
|
|
|
|
namespace DomainObjects.Documents.User
|
|
{
|
|
public class Site : DomainObjectBase<Site> {
|
|
public Guid SiteId { get; set; }
|
|
|
|
public List<string> Hosts { get; set; }
|
|
|
|
public Roles Role { get; set; }
|
|
|
|
public override int GetHashCode() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|