Creado apartir del commit b888de6c92056de294456f581a56e25e734d4ab7 de develop
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
namespace adas_core.Domain.Models;
|
||||
|
||||
public class WebMessageNotification
|
||||
{
|
||||
//{"notification":
|
||||
//{"title":"Notifications are cool",
|
||||
//"body":"Know how to send notifications through Angular with this article!",
|
||||
//"icon":"https://www.shareicon.net/data/256x256/2015/10/02/110808_blog_512x512.png",
|
||||
//"vibrate":[100,50,100],
|
||||
//"data":{"url":"https://medium.com/@arjenbrandenburgh/angulars-pwa-swpush-and-swupdate-15a7e5c154ac"}}
|
||||
public string? Title { get; set; }
|
||||
|
||||
public string? Body { get; set; }
|
||||
|
||||
public int[]? Vibrate { get; set; }
|
||||
|
||||
public string? Icon { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user