Add Deployment channel
This commit is contained in:
parent
68dab7a727
commit
00f795483a
5 changed files with 9453 additions and 104 deletions
16
BMA.EHR.Domain/Models/Commands/DeploymentChannel.cs
Normal file
16
BMA.EHR.Domain/Models/Commands/DeploymentChannel.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue