7 lines
144 B
C#
7 lines
144 B
C#
namespace FictionArchive.Service.NovelService.Models.DTOs;
|
|
|
|
public class ImageDto : BaseDto<Guid>
|
|
{
|
|
public string? NewPath { get; init; }
|
|
}
|