Initial import

This commit is contained in:
2026-04-02 16:48:03 +02:00
commit 3da5213e1a
112 changed files with 4672 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#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> { }
}