16 lines
373 B
C#
16 lines
373 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.Core
|
|
{
|
|
public class DeploymentChannel : EntityBase
|
|
{
|
|
public bool IsSendInbox { get; set; } = true;
|
|
|
|
public bool IsSendEmail { get; set; } = true;
|
|
}
|
|
}
|