Interface IDomicile
The system entity for a Domicile
See https://web.lemonedge.com/help/domiciles/ for more information
Inherited Members
System.IEquatable<LemonEdge.API.Core.IBaseEntity>.Equals(LemonEdge.API.Core.IBaseEntity)
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
System.ComponentModel.INotifyPropertyChanging.PropertyChanging
Namespace: LemonEdge.API.Entities
Assembly: API.dll
Syntax
[EntityDefinition(EntityID.Domicile, "dbo.LT_Domiciles", "Domicile", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "domiciles")]
[DefaultEntityIcon(ImageType.Domicile)]
public interface IDomicile : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier
Properties
Description
A user friendly description of this domicile
Declaration
[EntityProperty(SQLType.NVarChar, (short)2000, true)]
[EntityDescription("A user friendly description of this domicile.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
[Key] The unique user friendly Domicile name
Declaration
[EntityProperty(SQLType.NVarChar, (short)500, false)]
[EntityDescription("The unique name of this domicile.")]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ShortCode
The unique short code for this domicile
Declaration
[EntityProperty(SQLType.NVarChar, (short)25, true)]
[EntityDescription("The unique short code of this domicile.")]
string ShortCode { get; set; }
Property Value
Type | Description |
---|---|
System.String |