Files
Moonlight/Moonlight/App/Database/Entities/Notification/NotificationAction.cs
2023-03-03 20:19:31 +01:00

8 lines
229 B
C#

namespace Moonlight.App.Database.Entities.Notification;
public class NotificationAction
{
public int Id { get; set; }
public NotificationClient NotificationClient { get; set; }
public string Action { get; set; }
}