hrms-api-backend/BMA.EHR.Command.Service/Requests/UpdateCommandDeploymentRequest.cs
2023-07-28 15:04:26 +07:00

11 lines
281 B
C#

namespace BMA.EHR.Command.Service.Requests
{
public class UpdateCommandDeploymentRequest
{
public Guid PersonalId { get; set; } = Guid.Empty;
public bool EmailChannel { get; set; } = true;
public bool InboxChannel { get; set; } = true;
}
}