Files
DiunaBI/DiunaBI.Application/DTOModels/DeletedRecordDto.cs

12 lines
355 B
C#
Raw Permalink Normal View History

2025-12-01 18:37:09 +01:00
namespace DiunaBI.Application.DTOModels;
public class DeletedRecordDto
{
public Guid RecordId { get; set; }
public string Code { get; set; } = string.Empty;
public string? Desc1 { get; set; }
public DateTime DeletedAt { get; set; }
public Guid DeletedById { get; set; }
public string DeletedByName { get; set; } = string.Empty;
}