Firebird Cloud Message API előkészítése

This commit is contained in:
2025-05-15 14:41:34 +02:00
parent 0a36544dce
commit b6ffcca996
12 changed files with 1380 additions and 6 deletions
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.Common.DTO
{
public class FCMMessageDTO
{
public string? Token { get; set; }
public string? Body { get; set; }
public string? Title { get; set; }
public int? UserId { get; set; }
}
}