using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Repository.BackendRepository.Interface
{
public interface IDeviceImportRepository : IBackendRepository
{
///
/// 取代單一設備的設備分類(第3層)(包含設備的災害類別)
///
///
///
///
///
Task ReplaceOneDeviceInfo(string device_guid, Dictionary device_dict, List> device_disaster_dicts);
}
}