Class DiaryWithMeetingsDTO
Represents meetings of diary.
Inherited Members
Namespace: Integration.DataContracts
Syntax
[DataContract]
public class DiaryWithMeetingsDTO
Properties
DiaryID
The diary identifier
Declaration
[DataMember]
public int DiaryID { get; set; }
Property Value
Type | Description |
---|---|
int | The diary identifier. |
DiaryName
The diary title
Declaration
[DataMember]
public string DiaryName { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the diary. |
Meetings
Meetings for the diary
Declaration
[DataMember]
public IList<MeetingDTO> Meetings { get; set; }
Property Value
Type | Description |
---|---|
IList<MeetingDTO> | The meetings. |