practicekea_backend/microservices/_layers/domain/IEntity.cs

9 lines
149 B
C#
Raw Permalink Normal View History

2024-12-02 13:24:34 +00:00
namespace OnlineAssessment.Domain
{
public interface IEntity
{
int Id { get; set; }
//bool IsActive { get; set; }
}
}