10 lines
265 B
C#
10 lines
265 B
C#
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; }
|
|
} |