16 lines
351 B
C#
16 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth
|
|
{
|
|
public partial class KeepAlive
|
|
{
|
|
public string IdxMacchina { get; set; }
|
|
public DateTime? DataOraServer { get; set; }
|
|
public DateTime? DataOraMacchina { get; set; }
|
|
public DateTime? DataOraStart { get; set; }
|
|
}
|
|
}
|