Class CanvasItem
Assembly: LemonEdge.API.Entities.Auto.dll
Syntax
[DataContract]
public class CanvasItem : ICanvasItem, INotifyPropertyChanging, INotifyPropertyChanged
Constructors
CanvasItem()
Declaration
Properties
AccountID
The account id this item belongs to
Declaration
[Key]
public long AccountID { get; set; }
Property Value
ApprovedByUserID
Declaration
public Guid? ApprovedByUserID { get; set; }
Property Value
ApprovedByUserID_Label
Declaration
public string ApprovedByUserID_Label { get; set; }
Property Value
Declaration
public string Comment { get; set; }
Property Value
ID
The unique global id of this item
Declaration
[Key]
public Guid ID { get; set; }
Property Value
Label
Declaration
public string Label { get; set; }
Property Value
LastUpdated
The date/time stamp this item was last changed on in the canvas
Declaration
[Key]
public DateTimeOffset LastUpdated { get; set; }
Property Value
ModifiedByUserID
The user who made the change in the canvas
Declaration
public Guid ModifiedByUserID { get; set; }
Property Value
ModifiedByUserID_Label
The name of the user who made the change in the canvas
Declaration
public string ModifiedByUserID_Label { get; set; }
Property Value
ObjectType
The unique global id of the type of entity
Declaration
public Guid ObjectType { get; set; }
Property Value
ObjectType_Label
The label of the entity type that this changed item belongs to
Declaration
public string ObjectType_Label { get; set; }
Property Value
RejectedByUserID
Declaration
public Guid? RejectedByUserID { get; set; }
Property Value
RejectedByUserID_Label
Declaration
public string RejectedByUserID_Label { get; set; }
Property Value
Status
The type of change that has occured to this item within the canvas
Declaration
public CanvasItemStatus Status { get; set; }
Property Value
Declaration
[NotMapped]
public string Status_Tooltip { get; set; }
Property Value
Methods
OnPropertyChanged(string)
Declaration
protected void OnPropertyChanged(string propName)
Parameters
Type |
Name |
Description |
string |
propName |
|
OnPropertyChanging(string)
Declaration
protected void OnPropertyChanging(string propName)
Parameters
Type |
Name |
Description |
string |
propName |
|
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
PropertyChanging
Declaration
public event PropertyChangingEventHandler PropertyChanging
Event Type
Implements
Extension Methods