Add project files.
This commit is contained in:
11
ConstructorAppUI/Dtos/SliderDtos/CreateSliderDto.cs
Normal file
11
ConstructorAppUI/Dtos/SliderDtos/CreateSliderDto.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace ConstructorAppUI.Dtos.SliderDtos
|
||||
{
|
||||
public class CreateSliderDto
|
||||
{
|
||||
public string? Location { get; set; }
|
||||
public string? Sqm { get; set; }
|
||||
public string? PriceInfo { get; set; }
|
||||
public string? ImageUrl { get; set; }
|
||||
public IFormFile? ImageFile { get; set; } // Yüklenecek dosya
|
||||
}
|
||||
}
|
||||
11
ConstructorAppUI/Dtos/SliderDtos/GetSliderDto.cs
Normal file
11
ConstructorAppUI/Dtos/SliderDtos/GetSliderDto.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
11
ConstructorAppUI/Dtos/SliderDtos/ResultSliderDto.cs
Normal file
11
ConstructorAppUI/Dtos/SliderDtos/ResultSliderDto.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace ConstructorAppUI.Dtos.SliderDtos
|
||||
{
|
||||
public class ResultSliderDto
|
||||
{
|
||||
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; }
|
||||
}
|
||||
}
|
||||
11
ConstructorAppUI/Dtos/SliderDtos/UpdateSliderDto.cs
Normal file
11
ConstructorAppUI/Dtos/SliderDtos/UpdateSliderDto.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user