2025-03-02 12:51:02 +01:00

6 lines
106 B
C#

namespace W542.GandalfReborn.Data.Entities.Base;
public interface IEntity
{
long? Id { get; set; }
};