18 lines
461 B
C#
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; } = "";
|
|
}
|
|
}
|