12 lines
370 B
C#
12 lines
370 B
C#
using FirebaseAdmin.Messaging;
|
|
using Marco.Pms.Model.Dtos.Attendance;
|
|
|
|
namespace Marco.Pms.Services.Service.ServiceInterfaces
|
|
{
|
|
public interface IFirebaseService
|
|
{
|
|
Task SendLoginMessageAsync(Notification notificationFirebase);
|
|
Task SendAttendanceMessageAsync(Guid projectId, string Name, ATTENDANCE_MARK_TYPE markType, Guid tenantId);
|
|
}
|
|
}
|