mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-11 02:55:27 +00:00
11 lines
299 B
C#
11 lines
299 B
C#
using Lib.Net.Http.WebPush;
|
|
|
|
namespace PodNoms.Api.Services.Push.Models {
|
|
public class PushMessageViewModel {
|
|
public string Topic { get; set; }
|
|
|
|
public string Notification { get; set; }
|
|
|
|
public PushMessageUrgency Urgency { get; set; } = PushMessageUrgency.Normal;
|
|
}
|
|
} |