Files
TriliumMind/Data/Entities/JiraIssue.cs
2025-12-11 10:20:10 +09:00

20 lines
674 B
C#

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