Added services. Added admin ui. Added delete button
This commit is contained in:
14
Moonlight/App/Models/Misc/SubscriptionLimit.cs
Normal file
14
Moonlight/App/Models/Misc/SubscriptionLimit.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace Moonlight.App.Models.Misc;
|
||||
|
||||
public class SubscriptionLimit
|
||||
{
|
||||
public string Identifier { get; set; } = "";
|
||||
public int Amount { get; set; }
|
||||
public List<LimitOption> Options { get; set; } = new();
|
||||
|
||||
public class LimitOption
|
||||
{
|
||||
public string Key { get; set; } = "";
|
||||
public string Value { get; set; } = "";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user