Files
2025-05-01 15:18:30 +03:00

10 lines
248 B
C#

namespace ConstructorApp.DtoLayer.ProjectGalleryDto
{
public class GetProjectGalleryDto
{
public int ProjectGalleryID { get; set; }
public string? ImageUrl { get; set; }
public int ProjectID { get; set; }
}
}