Files
Moonlight/Moonlight/App/Database/Entities/Subscription.cs
2023-04-03 19:29:07 +02:00

9 lines
250 B
C#

namespace Moonlight.App.Database.Entities;
public class Subscription
{
public int Id { get; set; }
public string Name { get; set; } = "";
public string Description { get; set; } = "";
public string LimitsJson { get; set; } = "";
}