15 lines
294 B
C#
15 lines
294 B
C#
namespace DuSoft.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; }
|
|
}
|