2025-11-02 17:05:06 -08:00

19 lines
318 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Church.Net.Entity.Interface
{
public interface IEntity
{
string Id { get; set; }
}
public interface ICombinedKeyEntity
{
}
public interface IBussinessEntity
{
Guid Id { get; set; }
}
}