Files
constructdemo/ConstructorAppUI/Dtos/SliderDtos/GetSliderDto.cs
2025-05-01 15:18:30 +03:00

12 lines
314 B
C#

namespace ConstructorAppUI.Dtos.SliderDtos
{
public class GetSliderDto
{
public int SliderID { get; set; }
public string? Location { get; set; }
public string? Sqm { get; set; }
public string? PriceInfo { get; set; }
public string? ImageUrl { get; set; }
}
}