17 lines
414 B
C#
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; }
|
|
}
|
|
}
|