17 lines
386 B
C#
Raw Normal View History

2022-11-29 10:16:10 +05:30
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
{
2022-11-29 10:16:10 +05:30
public Notification notification { get; set; }
public List<string> FcmToken { get; set; }
}
}