Show / Hide Table of Contents

Class DiaryWithMeetingsDTO

Represents meetings of diary.

Inheritance
object
DiaryWithMeetingsDTO
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
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.

Back to top Created by Formpipe