This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
pwt-0x01-ng/Models/Carousel.cs
2020-11-03 23:21:20 +01:00

12 lines
296 B
C#

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