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