mirror of
https://github.com/skoelle/focusapp.git
synced 2026-09-17 20:10:25 +00:00
19 lines
515 B
C#
19 lines
515 B
C#
// Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de)
|
|
// Licensed under the MIT License. See LICENSE file in project root for details.
|
|
namespace FocusApp.Models;
|
|
|
|
public class FocusTask
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public int Order { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
|
|
|
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
|
|
}
|