Files
Umbraco-CMS/src/Umbraco.Core/Models/IDomain.cs

18 lines
451 B
C#

using Umbraco.Core.Models.Entities;
namespace Umbraco.Core.Models
{
public interface IDomain : IEntity, IRememberBeingDirty
{
int? LanguageId { get; set; }
string DomainName { get; set; }
int? RootContentId { get; set; }
bool IsWildcard { get; }
/// <summary>
/// Readonly value of the language ISO code for the domain
/// </summary>
string LanguageIsoCode { get; }
}
}