Customizable FS network url

This commit is contained in:
Andre Beging
2022-05-31 12:25:11 +02:00
parent bba0a377b5
commit cd22c2f215
10 changed files with 388 additions and 24 deletions

View File

@@ -0,0 +1,28 @@
namespace FoodsharingSiegen.Contracts.Model
{
/// <summary>
/// The custom value attribute class (a. beging, 31.05.2022)
/// </summary>
/// <seealso cref="Attribute" />
public sealed class CustomValueAttribute : Attribute
{
#region Public Properties
/// <summary>
/// Gets the value of the value (ab)
/// </summary>
public string Value { get; }
#endregion
#region Setup/Teardown
/// <summary>
/// Initializes a new instance of the <see cref="CustomValueAttribute" /> class
/// </summary>
/// <param name="value">The value (ab)</param>
public CustomValueAttribute(string value) => Value = value;
#endregion
}
}