mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 11:38:32 -07:00
* Access-Token Header is not sent if it has not been configured (or left blank) * Access token is now also sent in URI string with "token" as key * NotificationType is manually added to the notification data (original data is cloned before to avoid conflict in case of re-usage by other notification handlers)
14 lines
No EOL
414 B
C#
14 lines
No EOL
414 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ombi.Notifications.Models
|
|
{
|
|
public class NotificationMessage
|
|
{
|
|
public string Subject { get; set; }
|
|
public string Message { get; set; }
|
|
public string To { get; set; }
|
|
|
|
public Dictionary<string, string> Other { get; set; } = new Dictionary<string, string>();
|
|
public IDictionary<string, string> Data { get; set; }
|
|
}
|
|
} |