Files
WorkStation/WorkStation.Server/Context/Entity/BaseEntity.cs

10 lines
225 B
C#

namespace WorkStation.Server.Context.Entity
{
public class BaseEntity
{
public int Id { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
}
}