Files
VTSFetcher/VTSFetcher/Repositories/Entities/IssueWithStatus.cs
seungmuk.oh 64a758a701 이슈 변경 사항을 추적하기 위한 서비스 구현.
- DB 추적 및 Excel 리포트 출력
2025-12-18 17:08:26 +09:00

19 lines
614 B
C#

namespace VTSFetcher.Repositories.Entities;
public class IssueWithStatus
{
public string Key { get; set; }
public string Summary { get; set; }
public string? Parent { get; set; }
public string Type { get; set; }
public string CurrentStatus { get; set; }
public string Assignee { get; set; }
public string Manager { get; set; }
public DateTimeOffset Due { get; set; }
public DateTimeOffset Updated { get; set; }
// IssueStatus 정보
public string? PreviousStatus { get; set; }
public DateTimeOffset? Changed { get; set; }
public int Duration { get; set; }
}