23 lines
554 B
C#
23 lines
554 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TrelloIntegration
|
|
{
|
|
/// <summary>
|
|
/// Minimaler Response für eine erstellte Trello-Karte
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
}
|