This commit is contained in:
2020-06-08 23:42:40 +00:00
parent 4e13b3c9bb
commit 937e9c5907
18 changed files with 119 additions and 83 deletions

View File

@@ -259,21 +259,21 @@ namespace rockfishCore.Util
{
attachments = new List<fbAttachment>();
}
public bool noRecord;
public string id;
public string title;
public string project;
public int priority;
public string notes;
public long? created;
public long? closed;
public List<fbAttachment> attachments;
public bool noRecord { get; set; }
public string id { get; set; }
public string title { get; set; }
public string project { get; set; }
public int priority { get; set; }
public string notes { get; set; }
public long? created { get; set; }
public long? closed { get; set; }
public List<fbAttachment> attachments { get; set; }
}
public class fbAttachment
{
public string fileName;
public byte[] blob;
public string fileName { get; set; }
public byte[] blob { get; set; }
}
//eoc