using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TrelloIntegration
{
///
/// Optionen zum Erstellen einer Trello-Karte
///
public class CreateCardOptions
{
///
/// Kartentitel (Pflicht)
///
public string Name { get; set; } = "TestKarte";
///
/// Beschreibung der Karte (optional)
///
public string Desc { get; set; }
///
/// ID der Ziel-Liste (Pflicht)
///
public string IdList { get; set; } = "6a1fcdc9a1995f42c537ae10";
///
/// Position der Karte in der Liste: "top", "bottom" oder eine Zahl (optional)
///
public string Pos { get; set; }
///
/// Liste von Label-IDs für die Karte (optional)
///
public List IdLabels { get; set; }
///
/// Fälligkeitsdatum (Due Date) der Karte (optional)
/// Dieses Datum wird in UTC an die Trello-API übergeben.
///
public DateTime? DueDate { get; set; }
///
/// Startdatum der Karte (optional)
/// Dieses Datum wird in UTC an die Trello-API übergeben.
///
public DateTime? StartDate { get; set; }
}
}