14 lines
341 B
C#
14 lines
341 B
C#
using System.Text.Json.Serialization;
|
|
using SPMS.Application.DTOs.Notice;
|
|
|
|
namespace SPMS.Application.DTOs.File;
|
|
|
|
public class FileListResponseDto
|
|
{
|
|
[JsonPropertyName("items")]
|
|
public List<FileSummaryDto> Items { get; set; } = new();
|
|
|
|
[JsonPropertyName("pagination")]
|
|
public PaginationDto Pagination { get; set; } = null!;
|
|
}
|