Files

12 lines
344 B
C#

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; } = "";
}
}