2024-07-01 21:20:00 +02:00

15 lines
313 B
C#

namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class LogTypeDef
{
public decimal TypeId { get; set; }
public string? TypeCategory { get; set; }
public int Type { get; set; }
public string TypeValue { get; set; } = null!;
public DateTime? LastUpdate { get; set; }
}