FeatureRequest.cs - elyjhone23/ado-pipe GitHub Wiki
public class FeatureRequest
{
public string Id { get; set; } = string.Empty;
public LocalizedContent Title { get; set; } = new();
public LocalizedContent Description { get; set; } = new();
public LocalizedContent? Rationale { get; set; }
public string Category { get; set; } = string.Empty;
public FeatureStatus Status { get; set; }
public bool StakeholderValidationRequired { get; set; } = true;
public DateOnly? PlannedDate { get; set; }
public DateOnly? TargetDate { get; set; }
public DateOnly? CompletedDate { get; set; }
}