11 lines
336 B
C#
11 lines
336 B
C#
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; }
|
|
} |