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