10 lines
166 B
C#
10 lines
166 B
C#
namespace zero.Core.Entities
|
|
{
|
|
public interface IZeroIdEntity
|
|
{
|
|
/// <summary>
|
|
/// Id of the entity
|
|
/// </summary>
|
|
string Id { get; set; }
|
|
}
|
|
} |