mirror of https://github.com/Radarr/Radarr
17 lines
468 B
C#
17 lines
468 B
C#
using NzbDrone.Core.Messaging;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Notifications.Email
|
|
{
|
|
public class TestEmailCommand : Command
|
|
{
|
|
public string Server { get; set; }
|
|
public int Port { get; set; }
|
|
public bool Ssl { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public string From { get; set; }
|
|
public string To { get; set; }
|
|
}
|
|
}
|