DRAB/Pcm.Db/Entities/LogTypeDef.cs
2025-07-11 00:18:14 +02:00

14 lines
299 B
C#

using System;
#nullable disable
namespace Pcm.Db.Entities;
public class LogTypeDef
{
public decimal TypeId { get; set; }
public string TypeCategory { get; set; }
public int Type { get; set; }
public string TypeValue { get; set; }
public DateTime? LastUpdate { get; set; }
}