Initial commit.
This commit is contained in:
10
Data/Entities/Config.cs
Normal file
10
Data/Entities/Config.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace TriliumMind.Data.Entities;
|
||||
|
||||
public class Config
|
||||
{
|
||||
[Key]
|
||||
public string Key { get; set; } = null!;
|
||||
public string Value { get; set; } = null!;
|
||||
}
|
||||
20
Data/Entities/JiraIssue.cs
Normal file
20
Data/Entities/JiraIssue.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace TriliumMind.Data.Entities;
|
||||
|
||||
public class JiraIssue
|
||||
{
|
||||
[Key]
|
||||
public string Key { get; set; } = null!;
|
||||
public string Summary { get; set; } = null!;
|
||||
public string? Parent { get; set; }
|
||||
public string Type { get; set; } = null!;
|
||||
public string Status { get; set; } = null!;
|
||||
public string Assignee { get; set; } = null!;
|
||||
public string Manager { get; set; } = null!;
|
||||
public DateTimeOffset Due { get; set; }
|
||||
public DateTimeOffset Updated { get; set; }
|
||||
public DateTimeOffset Published { get; set; }
|
||||
public string? ObjectId { get; set; }
|
||||
public int NeedNotify { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user