Files
2026-01-03 18:06:18 +02:00

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;
}