namespace NPin.Framework.Upms.Domain.Shared.Dtos; public class PostDto { public Guid Id { get; set; } public string Code { get; set; } = string.Empty; public string Name { get; set; } = string.Empty; public string? Remark { get; set; } public bool IsDeleted { get; } public DateTime CreationTime { get; } = DateTime.Now; public Guid? CreatorId { get; } public DateTime? LastModificationTime { get; } public Guid? LastModifierId { get; } public int OrderNum { get; set; } public bool IsEnabled { get; set; } }