pwt-0x01/Models/Carousel.cs
surtur f8bb1d5fcc
refactor + add stuff
* solution-wide renames
* added carousel pic (ms luvz linux)
* created carousel helper
* updated project build configurations
2020-09-24 13:45:15 +02:00

11 lines
257 B
C#

namespace pwt_0x01.Models
{
public class Carousel
{
public string DataTarget { get; set; }
public string ImageSrc { get; set; }
public string ImageAlt { get; set; }
public string CarouselContent { get; set; }
}
}