22 lines
587 B
C#
22 lines
587 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.MONO.Core.DTO
|
|
{
|
|
public class MachineDTO
|
|
{
|
|
public string Manufacturer { get; set; } = "";
|
|
public string Model { get; set; } = "";
|
|
public string Name { get; set; } = "";
|
|
public string SerNumber { get; set; } = "";
|
|
public int ModeId { get; set; } = 0;
|
|
public int StatusId { get; set; } = 0;
|
|
}
|
|
}
|