mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
24 lines
786 B
C#
24 lines
786 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net.Http;
|
|
using System.Text;
|
|
|
|
namespace Remotely.Shared.Models
|
|
{
|
|
public class AlertOptions
|
|
{
|
|
public string AlertDeviceID { get; set; }
|
|
public string AlertMessage { get; set; }
|
|
public string ApiRequestBody { get; set; }
|
|
public Dictionary<string, string> ApiRequestHeaders { get; set; }
|
|
public string ApiRequestMethod { get; set; }
|
|
public string ApiRequestUrl { get; set; }
|
|
public string EmailBody { get; set; }
|
|
public string EmailSubject { get; set; }
|
|
public string EmailTo { get; set; }
|
|
public bool ShouldAlert { get; set; }
|
|
public bool ShouldEmail { get; set; }
|
|
public bool ShouldSendApiRequest { get; set; }
|
|
}
|
|
}
|