Files

15 lines
369 B
C#
Raw Permalink Normal View History

namespace Aaru.Server.Database.Models;
2021-12-08 17:57:50 +00:00
public class UsbModel
2019-11-17 23:32:57 +00:00
{
2021-12-08 17:57:50 +00:00
public string Manufacturer { get; set; }
public string Product { get; set; }
public ushort VendorID { get; set; }
public ushort ProductID { get; set; }
}
2019-11-17 23:32:57 +00:00
2021-12-08 17:57:50 +00:00
public class UsbModelForView
{
public List<UsbModel> List { get; set; }
public string Json { get; set; }
2019-11-17 23:32:57 +00:00
}