2026-05-27 12:47:16 +02:00

8 lines
109 B
C#

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