2022-12-09 11:11:10 +05:30
|
|
|
|
using Google.Cloud.Firestore;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BCS.BMC.FirebaseCloudMessaging.Dto
|
|
|
|
|
{
|
|
|
|
|
[FirestoreData]
|
|
|
|
|
public class FireStoreNotificationModel
|
|
|
|
|
{
|
|
|
|
|
[FirestoreProperty]
|
|
|
|
|
public string FcmToken { get; set; }
|
2022-12-12 23:23:09 +05:30
|
|
|
|
//[FirestoreProperty]
|
|
|
|
|
//public List<string> Id { get; set; }
|
2022-12-09 11:11:10 +05:30
|
|
|
|
[FirestoreProperty]
|
|
|
|
|
public string Message { get; set; }
|
|
|
|
|
[FirestoreProperty]
|
|
|
|
|
public DateTime? MessageSentDateTime { get; set; }
|
|
|
|
|
[FirestoreProperty]
|
|
|
|
|
|
|
|
|
|
public string SenderImageurl { get; set; }
|
|
|
|
|
[FirestoreProperty]
|
|
|
|
|
public string SenderName { get; set; }
|
|
|
|
|
[FirestoreProperty]
|
|
|
|
|
public bool Status { get; set; }
|
|
|
|
|
[FirestoreProperty]
|
2022-12-12 23:23:09 +05:30
|
|
|
|
public List<string> UserId { get; set; }
|
2022-12-16 12:23:24 +05:30
|
|
|
|
[FirestoreProperty]
|
|
|
|
|
public int CompanyId { get; set; }
|
2022-12-26 18:36:05 +05:30
|
|
|
|
[FirestoreProperty]
|
2023-01-12 17:29:56 +05:30
|
|
|
|
public long? ScheduleGenerationId { get; set; }
|
2022-12-09 11:11:10 +05:30
|
|
|
|
}
|
|
|
|
|
}
|