Files
Samuele E. Locatelli 50d65eebaa MP.DATA, riorganizzazioni varie:
- renaming classi gestione DbModels in
- spostamento anagrafica flussi da auth a generale
2025-03-08 10:40:09 +01:00

17 lines
380 B
C#

using MP.Data.DbModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MP.Data.DTO
{
public class userTknDTO
{
public AnagOperatoriModel currOpr { get; set; } = null;
//public DateTime expTime { get; set; } = DateTime.Now;
public Guid DevGuid { get; set; }
}
}