hrms-api-backend/BMA.EHR.Domain/Common/Interfaces/IPublishableEntity.cs

14 lines
243 B
C#
Raw Normal View History

2023-06-25 18:36:02 +07:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BMA.EHR.Domain.Common.Interfaces
{
public interface IPublishableEntity
{
bool IsPublished { get; set; }
}
}