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