namespace DigitalOps.CQRS.Services.TimeEntry.Options; public class AddTimeEntryOptions { public long ProjectId { get; set; } public long? ForUser { get; set; } public required string Description { get; set; } public DateTime StartAt { get; set; } public DateTime? EndAt { get; set; } public TimeOnly? Offset { get; set; } }