hrms-api-backend/BMA.EHR.Command.Service/Requests/UpdateCommandDeploymentRequest.cs

12 lines
281 B
C#
Raw Permalink Normal View History

2023-07-28 15:04:26 +07:00
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;
}
}