18 lines
401 B
C#
Executable File
18 lines
401 B
C#
Executable File
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
|
|
{
|
|
[JsonProperty("isSuccess")]
|
|
public bool IsSuccess { get; set; }
|
|
[JsonProperty("message")]
|
|
public string Message { get; set; }
|
|
}
|
|
}
|