namespace FoodsharingSiegen.Contracts.Model
{
///
/// The custom value attribute class (a. beging, 31.05.2022)
///
///
public sealed class CustomValueAttribute : Attribute
{
#region Public Properties
///
/// Gets the value of the value (ab)
///
public string Value { get; }
#endregion
#region Setup/Teardown
///
/// Initializes a new instance of the class
///
/// The value (ab)
public CustomValueAttribute(string value) => Value = value;
#endregion
}
}