13 lines
400 B
C#
13 lines
400 B
C#
namespace Backend.Models;
|
|
|
|
public class Issue
|
|
{
|
|
public DateTimeOffset Created { get; set; } = DateTimeOffset.Now;
|
|
public DateTimeOffset Updated { get; set; } = DateTimeOffset.Now;
|
|
public string Title { get; set; } = "";
|
|
public string Project { get; set; } = "UNKOWN";
|
|
public string? Text { get; set; }
|
|
public int IssueId { get; set; }
|
|
public int? ParentId { get; set; }
|
|
}
|