10 lines
248 B
C#
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; }
|
|
}
|
|
}
|