
Net.5.0.Rosetta.Attributes.RosettaMetaAttribute.cs Maven / Gradle / Ivy
namespace Rosetta.Lib.Attributes
{
using System;
///
/// Specifies that only one of the properties of the class should ever be set.
///
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
public class RosettaMetaAttribute : Attribute
{
public System.Type Value { get; set; }
public RosettaMetaAttribute(System.Type value)
{
Value = value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy