1
2
3
4
5
6
namespace Gs.Toolbox.ApiCore.Entity;
 
internal interface IEntity<T>
{
    T Id { get; set; }
}