Class SafeItem
Assembly: LemonEdge.API.Entities.Auto.dll
Syntax
[DataContract]
public class SafeItem : ISafeItem, INotifyPropertyChanging, INotifyPropertyChanged
Constructors
SafeItem()
Declaration
Properties
AccountID
The account id this item belongs to
Declaration
[Key]
public long AccountID { 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
SafeID
The safe this item is within
Declaration
public Guid SafeID { get; set; }
Property Value
SafeID_Label
The name of the safe this item is in
Declaration
public string SafeID_Label { 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