WASM Mode activated

This commit is contained in:
MarcWieland
2026-06-08 16:24:51 +02:00
parent fe294e288a
commit 58e562adb1
118 changed files with 1038 additions and 470 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace timetracker.Shared;
public class BreakEntry
{
public int Id { get; set; }
public int WorkDayId { get; set; }
[System.Text.Json.Serialization.JsonIgnore]
public WorkDay WorkDay { get; set; } = null!;
public TimeOnly? StartTime { get; set; }
public TimeOnly? EndTime { get; set; }
}