using Connected.Data; namespace Common.Notes; public interface INoteText : IPrimaryKey { string Entity { get; init; } string EntityId { get; init; } string? Text { get; init; } }