19 lines
308 B
C#
19 lines
308 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Syski.API.Models
|
|||
|
{
|
|||
|
public class GPUDTO
|
|||
|
{
|
|||
|
|
|||
|
public Guid Id { get; set; }
|
|||
|
|
|||
|
public string ModelName { get; set; }
|
|||
|
|
|||
|
public string ManufacturerName { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|