Added services. Added admin ui. Added delete button

This commit is contained in:
Marcel Baumgartner
2023-04-03 19:29:07 +02:00
parent 6db877d8fc
commit 010436cdb6
19 changed files with 1711 additions and 10 deletions

View 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; } = "";
}
}