Files
Aberwyn/Aberwyn/Models/AppSetting.cs
2026-01-24 16:52:53 +01:00

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"
}
}