Files
2023-01-12 11:38:25 +01:00

26 lines
925 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace GPW.CORE.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("AnagDevices")]
public partial class AnagDeviceModel
{
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int IdxDevice { get; set; }
public string DeviceSecret { get; set; } = null!;
public int IdxDipendente { get; set; }
public string DeviceName { get; set; } = null!;
public string Description { get; set; } = null!;
public DateTime DataOraEnabled { get; set; }
public DateTime DataOraLastSeen { get; set; }
public string LastIpv4 { get; set; } = null!;
public string ScreenSize { get; set; } = null!;
}
}