mirror of
https://github.com/Ikatono/ComiServ.git
synced 2025-10-28 20:45:35 -05:00
8 lines
130 B
C#
8 lines
130 B
C#
namespace ComiServ.Models;
|
|
|
|
//handle is taken from URL
|
|
public record class ComicDeleteRequest
|
|
(
|
|
bool DeleteIfFileExists
|
|
);
|