22 lines
677 B
C#
22 lines
677 B
C#
#region Using Statements
|
|
|
|
#endregion
|
|
|
|
namespace ClearstreamAPIConnector
|
|
{
|
|
public class DiTemplate
|
|
{
|
|
public string status { get; set; }
|
|
public string templateType { get; set; }
|
|
public string templateName { get; set; }
|
|
public string templateId { get; set; }
|
|
public string issuerName { get; set; }
|
|
public string baseProspectusName { get; set; }
|
|
public string payoffCalculation { get; set; }
|
|
public DateTimeOffset creationDate { get; set; }
|
|
public string comment { get; set; }
|
|
public string partyId { get; set; }
|
|
}
|
|
|
|
class DiTemplateList : List<DiTemplate> { }
|
|
} |