Files
Moonlight/Moonlight/App/Models/Notifications/NotificationById.cs
2023-06-17 20:47:07 +02:00

9 lines
199 B
C#

using Newtonsoft.Json;
namespace Moonlight.App.Models.Notifications;
public class NotificationById : BasicWSModel
{
[JsonProperty("notification")]
public int Notification { get; set; }
}