19 lines
430 B
C#
19 lines
430 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
public partial class KeepAlive
|
|
{
|
|
#region Public Properties
|
|
|
|
public DateTime? DataOraMacchina { get; set; }
|
|
public DateTime? DataOraServer { get; set; }
|
|
public DateTime? DataOraStart { get; set; }
|
|
public string IdxMacchina { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |