12 lines
247 B
C#
12 lines
247 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace SPMS.Application.DTOs.File;
|
|
|
|
public class FileDeleteRequestDto
|
|
{
|
|
[Required]
|
|
[JsonPropertyName("file_id")]
|
|
public long FileId { get; set; }
|
|
}
|