Files
Aaru/UsbProductDto.cs

42 lines
1.7 KiB
C#
Raw Normal View History

2019-01-01 16:43:34 +00:00
// /***************************************************************************
2020-02-27 12:31:23 +00:00
// Aaru Data Preservation Suite
2019-01-01 16:43:34 +00:00
// ----------------------------------------------------------------------------
//
2020-03-11 21:56:55 +00:00
// Filename : UsbProductDto.cs
2019-01-01 16:43:34 +00:00
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Aaru Server.
2019-01-01 16:43:34 +00:00
//
// --[ Description ] ----------------------------------------------------------
//
2020-03-11 21:56:55 +00:00
// DTO for syncing USB product identifiers in database.
2019-01-01 16:43:34 +00:00
//
// --[ License ] --------------------------------------------------------------
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
// License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
2020-01-03 17:51:29 +00:00
// Copyright © 2011-2020 Natalia Portillo
2019-01-01 16:43:34 +00:00
// ****************************************************************************/
2020-02-27 00:33:25 +00:00
namespace Aaru.Dto
2019-01-01 16:43:34 +00:00
{
public class UsbProductDto
{
public int Id { get; set; }
public ushort ProductId { get; set; }
public string Product { get; set; }
public ushort VendorId { get; set; }
}
}