1 instantiation of AtsDtoProperty
TypeScriptApiCompat (1)
AtsSurfaceParser.cs (1)
152return new AtsDtoProperty(name, typeId, isOptional);
5 references to AtsDtoProperty
TypeScriptApiCompat (5)
AtsCompatibilityComparer.cs (1)
94if (!currentDto.Properties.TryGetValue(propertyName, out var currentProperty))
AtsSurface.cs (1)
16internal sealed record AtsDtoType(string TypeId, IReadOnlyDictionary<string, AtsDtoProperty> Properties);
AtsSurfaceParser.cs (3)
68var property = ParseDtoProperty(trimmed); 139private static AtsDtoProperty ParseDtoProperty(string line) 301public Dictionary<string, AtsDtoProperty> Properties { get; } = new(StringComparer.Ordinal);