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