10 lines
238 B
C#
10 lines
238 B
C#
namespace ConstructorApp.DtoLayer.HomeBannerDto
|
|
{
|
|
public class CreateHomeBannerDto
|
|
{
|
|
public string? Title { get; set; }
|
|
public string? SubTitle { get; set; }
|
|
public string? LogoUrl { get; set; }
|
|
}
|
|
}
|