Interface IScheduleItem
Defines basic methods and properties of an schedule item.
Namespace: Simplic.UI.ScheduleView
Assembly: Simplic.UI.dll
Syntax
public interface IScheduleItem
Properties
| Improve this Doc View SourceBody
Gets or sets the System.String value representing the body of the ScheduleItem object.
Declaration
string Body { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Edits
Gets the list of IEdits of the
Declaration
IList<IEdit> Edits { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<IEdit> |
Id
Gets or sets the unique identifier of the IScheduleItem instance.
Declaration
object Id { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
IsDeleted
Gets or sets System.Boolean value indication whether the current
Declaration
bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Location
Gets or sets the System.String value representing the location of the IScheduleItem instance.
Declaration
string Location { get; set; }
Property Value
Type | Description |
---|---|
System.String |