12 lines
355 B
C#
12 lines
355 B
C#
|
|
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;
|
||
|
|
}
|