16 lines
450 B
C#
16 lines
450 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace XSDVisualiser.Core;
|
|
|
|
/// <summary>
|
|
/// SimpleType constraints (formerly called facets).
|
|
/// </summary>
|
|
public class ConstraintSet
|
|
{
|
|
[XmlAttribute] public string? BaseTypeName { get; set; }
|
|
|
|
// Generic catch-all list of constraints for dynamic display and tooling
|
|
[XmlArray("Constraints")]
|
|
[XmlArrayItem("Constraint")]
|
|
public List<ConstraintEntry> Constraints { get; set; } = new();
|
|
} |