10 lines
250 B
C#
10 lines
250 B
C#
namespace ConstructorAppUI.Dtos.ProjectGalleryDtos
|
|
{
|
|
public class ResultProjectGalleryDto
|
|
{
|
|
public int ProjectGalleryID { get; set; }
|
|
public string? ImageUrl { get; set; }
|
|
public int ProjectID { get; set; }
|
|
}
|
|
}
|