dotnet-digital-ops/DigitalOps.CQRS/Services/TimeEntry/Options/AddTimeEntryOptions.cs

11 lines
336 B
C#
Raw Normal View History

2025-01-02 15:10:52 -05:00
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; }
}