diff --git a/backend/src/Squidex.Infrastructure/NamedId{T}.cs b/backend/src/Squidex.Infrastructure/NamedId{T}.cs index 4dae47778..64a8b9886 100644 --- a/backend/src/Squidex.Infrastructure/NamedId{T}.cs +++ b/backend/src/Squidex.Infrastructure/NamedId{T}.cs @@ -6,12 +6,14 @@ // ========================================================================== using System; +using System.ComponentModel; using System.Diagnostics.CodeAnalysis; namespace Squidex.Infrastructure { public delegate bool Parser(ReadOnlySpan input, out T result); + [TypeConverter(typeof(NamedIdTypeConverter))] public sealed record NamedId where T : notnull { private static readonly int GuidLength = Guid.Empty.ToString().Length;