8 lines
243 B
C#
8 lines
243 B
C#
|
|
namespace Brizco.Domain.Dtos.RequestDtos;
|
|||
|
|
|
|||
|
|
public class CompleteActivityRequestDto
|
|||
|
|
{
|
|||
|
|
public Guid ActivityId { get; set; }
|
|||
|
|
public bool IsCompleted { get; set; }
|
|||
|
|
public string PerformanceDescription { get; set; } = string.Empty;
|
|||
|
|
}
|