JiraIssue에 대해 Trilium 노트 발급 기능 추가.
This commit is contained in:
@@ -17,4 +17,19 @@ public class JiraIssue
|
||||
public DateTimeOffset Published { get; set; }
|
||||
public string? ObjectId { get; set; }
|
||||
public int NeedNotify { get; set; }
|
||||
|
||||
public JiraIssue() { }
|
||||
protected JiraIssue(JiraIssue issue)
|
||||
{
|
||||
this.Key = issue.Key;
|
||||
this.Summary = issue.Summary;
|
||||
this.Parent = issue.Parent;
|
||||
this.Type = issue.Type;
|
||||
this.Status = issue.Status;
|
||||
this.Assignee = issue.Assignee;
|
||||
this.Manager = issue.Manager;
|
||||
this.Published = issue.Published;
|
||||
this.ObjectId = issue.ObjectId;
|
||||
this.NeedNotify = issue.NeedNotify;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user