19 lines
614 B
C#
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; }
|
|
} |