mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
13 lines
234 B
C#
13 lines
234 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs.Uploads;
|
|
|
|
public sealed record UploadUrlDto
|
|
{
|
|
/// <summary>
|
|
/// External url
|
|
/// </summary>
|
|
[Required]
|
|
public required string Url { get; set; }
|
|
}
|