Add Deployment channel

This commit is contained in:
Suphonchai Phoonsawat 2023-06-28 10:32:16 +07:00
parent 68dab7a727
commit 00f795483a
5 changed files with 9453 additions and 104 deletions

View file

@ -0,0 +1,16 @@
using BMA.EHR.Domain.Models.Base;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BMA.EHR.Domain.Models.Commands
{
public class DeploymentChannel : EntityBase
{
public bool IsSendInbox { get; set; } = true;
public bool IsSendEmail { get; set; } = true;
}
}