Class ProductionSchedule
A production schedule.
[DataContract(IsReference = true)]
public class ProductionSchedule : INotifyPropertyChanged
- Inheritance
-
ProductionSchedule
- Implements
- Inherited Members
Properties
DateTimeUploaded
Gets or sets the date/time that the production schedule was uploaded, in UTC.
[DataMember]
public DateTime DateTimeUploaded { get; set; }
Property Value
IsDeserializing
Gets or sets whether this object is currently being deserialized.
protected bool IsDeserializing { get; }
Property Value
Name
Gets or sets the production schedule name.
[DataMember]
public string Name { get; set; }
Property Value
ProductionScheduleId
Gets or sets the unique identifier for this production schedule.
[DataMember]
public int ProductionScheduleId { get; set; }
Property Value
Methods
OnPropertyChanged(string)
Processes property changes by raising the PropertyChanged event.
protected virtual void OnPropertyChanged(string propertyName)
Parameters
propertyName
stringThe name of the property that changed.
Events
PropertyChanged
Occurs when a property value changes.
public event PropertyChangedEventHandler PropertyChanged