เพิ่ม service ระบบออกคำสั่ง (not complete)

This commit is contained in:
Suphonchai Phoonsawat 2023-07-13 15:03:29 +07:00
parent 90b4705234
commit b99d7e759b
15 changed files with 23495 additions and 115 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.Core
{
public class DeploymentChannel : EntityBase
{
public bool IsSendInbox { get; set; } = true;
public bool IsSendEmail { get; set; } = true;
}
}