mirror of
https://github.com/Ikatono/ComiServ.git
synced 2025-10-28 20:45:35 -05:00
10 lines
250 B
C#
10 lines
250 B
C#
namespace ComiServ.Models;
|
|
|
|
public class ComicMetadataUpdateRequest
|
|
{
|
|
public string? Title { get; set; }
|
|
public string? Description { get; set; }
|
|
public List<string>? Tags { get; set; }
|
|
public List<string>? Authors { get; set; }
|
|
}
|