24 lines
611 B
C#
Executable File
24 lines
611 B
C#
Executable File
using FirebaseAdmin.Messaging;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BCS.BMC.FirebaseCloudMessaging.Dto
|
|
{
|
|
public class FireBaseResponseModel
|
|
{
|
|
public Notification notification { get; set; }
|
|
public string FcmToken { get; set; }
|
|
|
|
public BmcMessageStatusInput getResponseData { get; set; }
|
|
}
|
|
public class FireBaseResponseModelForBmc
|
|
{
|
|
public Notification notification { get; set; }
|
|
public List<string> FcmToken { get; set; }
|
|
}
|
|
}
|