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