14 lines
299 B
C#
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; }
|
|
} |