using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; namespace FrontendWebApi.Models { public class RescueDevice { public string rescue_device_guid { get; set; } public string rescue_device_id { get; set; } public string floor_guid { get; set; } public string floor_name { get; set; } public string location { get; set; } } public class SaveFireExtinguisher { public string guid { get; set; } public string location { get; set; } } public class RescueDeviceTableUse { public string build { get; set; } public List floors { get; set; } public byte kind { get; set; } } public class ImportRescueDevice { public IFormFile import_file { get; set; } public byte kind { get; set; } public string building { get; set; } } public class RescueDeviceTable { public string rescue_device_guid { get; set; } public string rescue_device_id { get; set; } public string building_guid { get; set; } public string floor_guid { get; set; } public string floor_name { get; set; } public string location { get; set; } } public class Excel { public string build { get; set; } public byte kind { get; set; } public string buildname { get; set; } } }