NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Common/ErrorMessage.cs
2026-01-20 07:44:30 +08:00

20 lines
519 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.Common
{
[Table("ErrorMessage")]
public class ErrorMessage
{
public int Id { get; set; }
public string Message { get; set; }
public string CreatedBy { get; set; }
public string Application { get; set; }
public DateTime CreatedDate { get; set; }
}
}