using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Repository.BackendRepository.Interface
{
public interface IDeviceManageRepository : IBackendRepository
{
///
/// 修改單一設備資訊(包含設備的災害類別)
///
///
///
///
///
Task UpdateOneDeviceInfo(string device_guid, Dictionary device_dict, List> device_disaster_dicts);
}
}