9 lines
232 B
C#
9 lines
232 B
C#
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Sozsoft.Platform.AuditLogs;
|
|
|
|
public class AuditLogListRequestDto : PagedAndSortedResultRequestDto
|
|
{
|
|
public string ListFormCode { get; set; }
|
|
public string EntityId { get; set; }
|
|
}
|