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; }
    }
}