using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TrelloIntegration { /// /// Minimaler Response für eine erstellte Trello-Karte /// public class TrelloCard { public string Id { get; set; } public string Name { get; set; } public string Desc { get; set; } public string IdList { get; set; } public string ShortUrl { get; set; } public DateTime? DueDate { get; set; } public DateTime? StartDate { get; set; } public string IdBoard { get; set; } } }