Add default values for Priority and Sound.

This commit is contained in:
David Pooley 2018-08-26 22:48:46 +01:00
commit 067ffae303

View file

@ -8,7 +8,7 @@ namespace Ombi.Settings.Settings.Models.Notifications
public bool Enabled { get; set; }
public string AccessToken { get; set; }
public string UserToken { get; set; }
public sbyte Priority { get; set; }
public string Sound { get; set; }
public sbyte Priority { get; set; } = 0;
public string Sound { get; set; } = "pushover";
}
}