16 lines
367 B
C#
16 lines
367 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Repository.Models
|
|||
|
{
|
|||
|
|
|||
|
public class Device_replace_dict
|
|||
|
{
|
|||
|
public Dictionary<string, object> Device_replace { get; set; }
|
|||
|
public List<Dictionary<string, object>> Device_disaster_dicts { get; set; }
|
|||
|
}
|
|||
|
}
|