23 lines
605 B
C#
23 lines
605 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; } = "";
|
|
public DateTime LastUpdate { get; set; } = DateTime.Today.AddYears(-1);
|
|
}
|
|
}
|