Interface IHasOriginalID
Indicates this entity can be copied from other entities, and when done so this holds the id of the original item it was copied from
Namespace: LemonEdge.API.Core
Assembly: API.dll
Syntax
public interface IHasOriginalID
Properties
OriginalID
Holds the original record this record was copied from.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, true)]
[EntityDescription("Holds the original record this record was copied from.")]
[EntitySelfRelationship("ID", SingleJoinType.ZeroToOne, "Original", "Copies")]
Guid? OriginalID { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |