2022-09-08 08:04:32 -07:00

15 lines
238 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
{
}
}