16 lines
366 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Manager.Interfaces.DTO
{
public class DeviceDTO
{
public string Id { get; set; }
public string Name { get; set; }
public string IpAddress { get; set; }
public bool Connected{ get; set; }
public DateTime DateCreation{ get; set; }
}
}