initial project commit

This commit is contained in:
2020-03-18 18:21:15 -04:00
commit b45b2d80b0
17 changed files with 872 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
namespace Habitica.Todoist.Integration.Model.Todoist
{
public class Due
{
public string Date { get; set; }
public string Timezone { get; set; }
public string @String { get; set; }
public string ToJavaScriptDateStr()
{
try { return Date + "T00:00:00.000Z"; } catch { }
return null;
}
}
}