12 lines
317 B
C#
12 lines
317 B
C#
namespace ConstructorAppUI.Dtos.SliderDtos
|
|
{
|
|
public class UpdateSliderDto
|
|
{
|
|
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; }
|
|
}
|
|
}
|