LSFE/LSFE.Infrastructure/Entities/BaseLogEntity.cs
2026-07-30 10:31:04 +08:00

17 lines
414 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Entities
{
public class BaseLogEntity
{
public DateTime CreatedDate { get; set; }= DateTime.Now;
public DateTime UpdatedDate { get; set; }
public string? CreatedBy { get; set; }
public string? UpdatedBy { get;set; }
}
}