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/CarouselViewModel.cs
surtur b35b3d6ce7
All checks were successful
continuous-integration/drone/push Build is passing
refactor: spaces --> tabs
2020-12-28 14:50:19 +01:00

10 lines
155 B
C#

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