Class MeetingDTO
Represents a meeting.
Inherited Members
Namespace: Integration.DataContracts
Syntax
[DataContract]
public class MeetingDTO
Properties
Date
The date of the meeting.
Declaration
[DataMember]
public string Date { get; set; }
Property Value
Type | Description |
---|---|
string | The date of the meeting. |
Remarks
A meeting does not have a name, instead the date can be presented to the user. There are only one meeting per day.
MeetingID
The unique identifier of the meeting in the system.
Declaration
[DataMember]
public int MeetingID { get; set; }
Property Value
Type | Description |
---|---|
int | The meeting identifier. |
StopDate
The stop date
Declaration
[DataMember]
public string StopDate { get; set; }
Property Value
Type | Description |
---|---|
string | The stop date. |