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