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

15 lines
375 B
C#

using Microsoft.AspNetCore.Http;
namespace pwt_0x01_ng.Models
{
public class Carousel
{
public int id { get; set; }
public string DataTarget { get; set; }
public IFormFile Image { get; set; }
public string ImageSrc { get; set; }
public string ImageAlt { get; set; }
public string CarouselContent { get; set; }
}
}