27 lines
677 B
C#
27 lines
677 B
C#
namespace Aberwyn.Models
|
|
{
|
|
public class AppSetting
|
|
{
|
|
public int Id { get; set; }
|
|
public string Key { get; set; }
|
|
public string Value { get; set; }
|
|
}
|
|
|
|
public class TodoTask
|
|
{
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
public int Priority { get; set; }
|
|
public string Status { get; set; } = "ideas";
|
|
public DateTime CreatedAt { get; set; }
|
|
public string? AssignedTo { get; set; }
|
|
public bool IsArchived { get; set; }
|
|
public string Tags { get; set; } // Komma-separerad t.ex. "frontend,bug"
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|