10 lines
237 B
C#
10 lines
237 B
C#
namespace ConstructorAppUI.Dtos.HomeBannerDtos
|
|
{
|
|
public class CreateHomeBannerDto
|
|
{
|
|
public string? Title { get; set; }
|
|
public string? SubTitle { get; set; }
|
|
public string? LogoUrl { get; set; }
|
|
}
|
|
}
|