mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-07 00:56:40 +00:00
11 lines
367 B
C#
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; }
|
|
}
|
|
} |