8 lines
229 B
C#
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; }
|
|
} |