20 lines
537 B
C#
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; }
|
|
}
|
|
}
|