2023-06-28 10:32:16 +07:00
|
|
|
|
using BMA.EHR.Domain.Models.Base;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2023-07-13 15:03:29 +07:00
|
|
|
|
namespace BMA.EHR.Domain.Models.Commands.Core
|
2023-06-28 10:32:16 +07:00
|
|
|
|
{
|
|
|
|
|
|
public class DeploymentChannel : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public bool IsSendInbox { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
|
|
public bool IsSendEmail { get; set; } = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|