Initial commit.

This commit is contained in:
2025-12-11 10:20:10 +09:00
commit 057481803f
21 changed files with 1327 additions and 0 deletions

10
Data/Entities/Config.cs Normal file
View 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!;
}

View 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; }
}