TourIAm/TIAMWebApp/Shared/Models/ClientSide/UI/HeroSliderItem.cs

12 lines
337 B
C#

namespace TIAMWebApp.Shared.Application.Models.ClientSide.UI
{
public class HeroSliderItem
{
public string ImageUrl { get; set; }
public string Title { get; set; }
public string Subtitle { get; set; }
public string ButtonText { get; set; }
public string ButtonUrl { get; set; }
}
}