9 lines
201 B
C#
9 lines
201 B
C#
namespace ConstructorApp.DtoLayer.ProjectGalleryDto
|
|
{
|
|
public class CreateProjectGalleryDto
|
|
{
|
|
public string? ImageUrl { get; set; }
|
|
public int ProjectID { get; set; }
|
|
}
|
|
}
|