Files
podnoms/server/Services/Push/PushNotificationServiceOptions.cs
2018-03-27 17:15:07 +01:00

11 lines
367 B
C#

namespace PodNoms.Api.Services.Push {
public class PushNotificationServiceOptions {
public string Subject { get; set; }
public string PushUrl { get; set; }
public string ClickUrl { get; set; }
public string ImageUrl { get; set; }
public string PublicKey { get; set; }
public string PrivateKey { get; set; }
}
}