Customizable FS network url
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
using FoodsharingSiegen.Contracts.Model;
|
||||
|
||||
namespace FoodsharingSiegen.Contracts.Entity
|
||||
{
|
||||
/// <summary>
|
||||
@@ -118,6 +120,42 @@ namespace FoodsharingSiegen.Contracts.Entity
|
||||
Ambassador = 400
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The fs network type enum
|
||||
/// </summary>
|
||||
public enum FsNetworkType
|
||||
{
|
||||
/// <summary>
|
||||
/// The germany fs network type
|
||||
/// </summary>
|
||||
[CustomValue("https://foodsharing.de")]
|
||||
Germany = 0,
|
||||
|
||||
/// <summary>
|
||||
/// The germany beta fs network type
|
||||
/// </summary>
|
||||
[CustomValue("https://beta.foodsharing.de")]
|
||||
GermanyBeta = 10,
|
||||
|
||||
/// <summary>
|
||||
/// The austria fs network type
|
||||
/// </summary>
|
||||
[CustomValue("https://foodsharing.at")]
|
||||
Austria = 20,
|
||||
|
||||
/// <summary>
|
||||
/// The austria beta fs network type
|
||||
/// </summary>
|
||||
[CustomValue("https://beta.foodsharing.at")]
|
||||
AustriaBeta = 30,
|
||||
|
||||
/// <summary>
|
||||
/// The switzerland fs network type
|
||||
/// </summary>
|
||||
[CustomValue("https://foodsharing.network")]
|
||||
Switzerland = 40
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The interaction type enum
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user