7 lines
206 B
C#
7 lines
206 B
C#
|
|
using Volo.Abp.Application.Dtos;
|
||
|
|
|
||
|
|
public class ActivityListRequestDto : PagedAndSortedResultRequestDto
|
||
|
|
{
|
||
|
|
public string EntityName { get; set; }
|
||
|
|
public string EntityId { get; set; }
|
||
|
|
}
|