Files
gpw_next/GPW.CORE/DeviceDTO.cs
T

22 lines
420 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GPW.CORE
{
/// <summary>
/// DTO info Device (+utente se trovato)
/// </summary>
public class DeviceDTO
{
public string DevSec { get; set; } = "";
public string DevIpv4 { get; set; } = "";
public UserDTO? UserRel { get; set; } = null;
}
}