16 lines
325 B
C#
16 lines
325 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace APT.Domain
|
|
{
|
|
public class EntityBase
|
|
{
|
|
public Guid ID { get; set; } = Guid.NewGuid();
|
|
|
|
public DateTime CreatedTime { get; set; } = DateTime.Now;
|
|
|
|
public DateTime LastUpdated { get; set; } = DateTime.Now;
|
|
}
|
|
}
|