16 lines
335 B
C#
16 lines
335 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPMS.Application.DTOs.File;
|
|
|
|
public class FileListRequestDto
|
|
{
|
|
[JsonPropertyName("page")]
|
|
public int Page { get; set; } = 1;
|
|
|
|
[JsonPropertyName("size")]
|
|
public int Size { get; set; } = 20;
|
|
|
|
[JsonPropertyName("file_type")]
|
|
public string? FileType { get; set; }
|
|
}
|