mh_frame_sps/APT.Domain/ModelBase.cs

16 lines
325 B
C#
Raw Normal View History

2026-04-07 13:47:52 +08:00
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;
}
}