Files
mixtape/zero.Core/BaseEntities/ZeroIdEntity.cs
T

9 lines
138 B
C#
Raw Normal View History

2021-11-22 16:03:02 +01:00
namespace zero;
2021-11-19 14:59:24 +01:00
public class ZeroIdEntity
{
/// <summary>
/// Id of the entity
/// </summary>
public string Id { get; set; }
}