initial project commit
This commit is contained in:
19
Habitica.Todoist.Integration.Model/Habitica/Task.cs
Normal file
19
Habitica.Todoist.Integration.Model/Habitica/Task.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Habitica.Todoist.Integration.Model.Habitica
|
||||
{
|
||||
public class Task
|
||||
{
|
||||
[JsonProperty("text")]
|
||||
public string Text { get; set; }
|
||||
[JsonProperty("type")]
|
||||
public string Type { get; set; }
|
||||
[JsonProperty("date")]
|
||||
public string Date { get; set; }
|
||||
[JsonProperty("priority")]
|
||||
public string Priority { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user