2024-05-16 15:01:35 +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; }
}