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

17 lines
413 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.Common
{
public class CommonProperties
{
public string? CreatedBy { get; set; }
public string? UpdatedBy { get; set; }
public DateTime CreatedDate { get; set; }
public DateTime UpdatedDate { get; set; }
}
}