11 lines
347 B
C#
11 lines
347 B
C#
namespace ClaudeDo.Data.Models;
|
|
|
|
public sealed class WeekReportEntity
|
|
{
|
|
public string Id { get; init; } = Guid.NewGuid().ToString();
|
|
public DateOnly StartDate { get; set; }
|
|
public DateOnly EndDate { get; set; }
|
|
public string Markdown { get; set; } = string.Empty;
|
|
public DateTime GeneratedAt { get; set; } = DateTime.UtcNow;
|
|
}
|