Files
gpw_next/GPW.Api/GPW.Data/DBModels/AnagDevice.cs
T
2021-10-18 15:43:53 +02:00

20 lines
537 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace GPW.Data.DBModels
{
public partial class AnagDevice
{
public int IdxDevice { get; set; }
public string DeviceSecret { get; set; }
public int IdxDipendente { get; set; }
public string DeviceName { get; set; }
public string Description { get; set; }
public DateTime DataOraEnabled { get; set; }
public DateTime DataOraLastSeen { get; set; }
public string LastIpv4 { get; set; }
}
}