11 lines
332 B
C#
11 lines
332 B
C#
namespace ClaudeDo.Data.Models;
|
|
|
|
public sealed class DailyNoteEntity
|
|
{
|
|
public string Id { get; init; } = Guid.NewGuid().ToString();
|
|
public DateOnly Date { get; set; }
|
|
public string Text { get; set; } = string.Empty;
|
|
public int SortOrder { get; set; }
|
|
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
|
}
|