Files
lux/EgwCoreLib.Lux.Core/Generic/TaskHistDTO.cs
T
Samuele Locatelli b10b5ef248 Update display ordine
2025-11-21 12:50:56 +01:00

18 lines
461 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EgwCoreLib.Lux.Core.Generic
{
public class TaskHistDTO
{
public DateTime DtEvent { get; set; } = DateTime.Now;
public string Message { get; set; } = "";
public string UserName { get; set; } = "";
public int ValInt { get; set; } = 0;
public string IconCss { get; set; } = "";
}
}