15 lines
375 B
C#
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; }
|
|
}
|
|
}
|