Files
limanapp/LiMan.DB/DTO/DeviceDTO.cs
T
2025-01-17 09:56:04 +01:00

22 lines
525 B
C#

using Core;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Core.Enum;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace LiMan.DB.DTO
{
public class DeviceDTO
{
public string CodImp { get; set; } = "";
public string CodInst { get; set; } = "";
public string DevName { get; set; } = "";
}
}