Creado apartir del commit b888de6c92056de294456f581a56e25e734d4ab7 de develop

This commit is contained in:
jrojas
2026-06-26 09:52:35 +02:00
commit 319fd3dfb0
746 changed files with 106610 additions and 0 deletions
@@ -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; }
}