8 lines
194 B
C#
8 lines
194 B
C#
namespace Frontend.Libs.Generic.Carousel.Components;
|
|
|
|
public class CarouselItem
|
|
{
|
|
public string ImageUrl { get; set; } = string.Empty;
|
|
public string Text { get; set; } = string.Empty;
|
|
}
|