Files
constructdemo/ConstructorApp.DtoLayer/SliderDto/CreateSliderDto.cs
2025-05-01 15:18:30 +03:00

11 lines
276 B
C#

namespace ConstructorApp.DtoLayer.SliderDto
{
public class CreateSliderDto
{
public string? Location { get; set; }
public string? Sqm { get; set; }
public string? PriceInfo { get; set; }
public string? ImageUrl { get; set; }
}
}