10 lines
225 B
C#
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; }
|
|||
|
}
|
|||
|
}
|