hrms-api-backend/BMA.EHR.Domain/Common/Interfaces/IPublishableEntity.cs
Suphonchai Phoonsawat 1ba2f2eec1 Restructure TAble
2023-06-25 18:36:02 +07:00

13 lines
243 B
C#

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