using Ropin.Inspection.Common.Helper;
using Ropin.Inspection.Model;
using Ropin.Inspection.Model.ViewModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Ropin.Inspection.Service
{
    public interface IPushMsgService
    {
        Task<bool> PushAlarmMsgAsync(TpushMsgModel pushModel, string Subject = null, RabbitMQModel rabbitMQModel = null);
        Task PushRecordMsgAsync(string type, TispRecordItemAlarmDetailViewModel viewModel);
    }
}