15 lines
313 B
C#
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; }
|
|
}
|