pwt-0x01/Models/CarouselViewModel.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

10 lines
167 B
C#

using System.Collections.Generic;
namespace pwt_0x01.Models
{
public class CarouselViewModel
{
public IList<Carousel> Carousels { get; set; }
}
}