Class PropertyBaseDTO
A base class for objects.
Inherited Members
Namespace: Integration.DataContracts
Syntax
[DataContract]
public abstract class PropertyBaseDTO
Properties
Description
The description of object.
Declaration
[DataMember(IsRequired = true)]
public string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The description of 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. |