2026-04-11 21:36:05 +02:00

8 lines
109 B
C#

namespace OnlyPrompt.Backend.Database.Core
{
public interface IEntity
{
public Guid Id { get; }
}
}