10 lines
204 B
C#
10 lines
204 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace XSDVisualiser.Core;
|
|
|
|
public class ConstraintEntry
|
|
{
|
|
[XmlAttribute] public string? Name { get; set; }
|
|
|
|
[XmlAttribute] public string? Value { get; set; }
|
|
} |