hrms-api-backend/BMA.EHR.Domain/Models/Commands/DeploymentChannel.cs
Suphonchai Phoonsawat 00f795483a Add Deployment channel
2023-06-28 10:32:16 +07:00

16 lines
368 B
C#

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;
}
}