Files
Aaru.Server/DiscImageChef.Server/Models/UsbModel.cs

18 lines
454 B
C#
Raw Normal View History

2019-11-17 23:32:57 +00:00
using System.Collections.Generic;
namespace DiscImageChef.Server.Models
{
public class UsbModel
{
public string Manufacturer { get; set; }
public string Product { get; set; }
public ushort VendorID { get; set; }
public ushort ProductID { get; set; }
}
public class UsbModelForView
{
public List<UsbModel> List { get; set; }
public string Json { get; set; }
}
}