Add project files.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace ConstructorAppUI.Dtos.HomeBannerDtos
|
||||
{
|
||||
public class CreateHomeBannerDto
|
||||
{
|
||||
public string? Title { get; set; }
|
||||
public string? SubTitle { get; set; }
|
||||
public string? LogoUrl { get; set; }
|
||||
}
|
||||
}
|
||||
10
ConstructorAppUI/Dtos/HomeBannerDtos/GetHomeBannerDto.cs
Normal file
10
ConstructorAppUI/Dtos/HomeBannerDtos/GetHomeBannerDto.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace ConstructorAppUI.Dtos.HomeBannerDtos
|
||||
{
|
||||
public class GetHomeBannerDto
|
||||
{
|
||||
public int HomeBannerID { get; set; }
|
||||
public string? Title { get; set; }
|
||||
public string? SubTitle { get; set; }
|
||||
public string? LogoUrl { get; set; }
|
||||
}
|
||||
}
|
||||
10
ConstructorAppUI/Dtos/HomeBannerDtos/ResultHomeBannerDto.cs
Normal file
10
ConstructorAppUI/Dtos/HomeBannerDtos/ResultHomeBannerDto.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace ConstructorAppUI.Dtos.HomeBannerDtos
|
||||
{
|
||||
public class ResultHomeBannerDto
|
||||
{
|
||||
public int HomeBannerID { get; set; }
|
||||
public string? Title { get; set; }
|
||||
public string? SubTitle { get; set; }
|
||||
public string? LogoUrl { get; set; }
|
||||
}
|
||||
}
|
||||
10
ConstructorAppUI/Dtos/HomeBannerDtos/UpdateHomeBannerDto.cs
Normal file
10
ConstructorAppUI/Dtos/HomeBannerDtos/UpdateHomeBannerDto.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace ConstructorAppUI.Dtos.HomeBannerDtos
|
||||
{
|
||||
public class UpdateHomeBannerDto
|
||||
{
|
||||
public int HomeBannerID { get; set; }
|
||||
public string? Title { get; set; }
|
||||
public string? SubTitle { get; set; }
|
||||
public string? LogoUrl { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user