20 lines
674 B
C#
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; }
|
|||
|
|
}
|