Class DeedMasterDTO
The master view of a deed, to be presented a list by consumer.
Inherited Members
Namespace: Integration.DataContracts
Syntax
[DataContract]
public class DeedMasterDTO
Properties
CreatedDate
The created date of the deed.
Declaration
[DataMember(IsRequired = true)]
public DateTime CreatedDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime | The creation date of the deed. |
DeedType
The deed type information for deed.
Declaration
[DataMember(IsRequired = true)]
public DeedTypeDTO DeedType { get; set; }
Property Value
Type | Description |
---|---|
DeedTypeDTO | DeedTypeDTO containing deed type information. |
DiaryNumber
The diary number of the object.
Declaration
[DataMember(IsRequired = true)]
public string DiaryNumber { get; set; }
Property Value
Type | Description |
---|---|
string | The diary number of the object. |
PropID
The unique identifier of the object.
Declaration
[DataMember(IsRequired = true)]
public int PropID { get; set; }
Property Value
Type | Description |
---|---|
int | The unique identifier of the object. |
Title
The title of the object.
Declaration
[DataMember(IsRequired = true)]
public string Title { get; set; }
Property Value
Type | Description |
---|---|
string | The title of the object. |