// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace System.Xml.Serialization
{
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[AttributeUsage(AttributeTargets.Field)]
public class XmlEnumAttribute : System.Attribute
{
private string? _name;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public XmlEnumAttribute()
{
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public XmlEnumAttribute(string? name)
{
_name = name;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public string? Name
{
get { return _name; }
set { _name = value; }
}
}
}
|