Guest User

Untitled

a guest
Feb 20th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. using System.Collections.Generic;
  2. using Elo.Foundation.SitecoreExtensions.Models;
  3.  
  4. namespace Elo.Foundation.SharedFrontEnd.ViewModel
  5. {
  6. public class CarouselViewModel
  7. {
  8. public List<ImageWithSize> Images { get; set; }
  9. public string Name { get; set; }
  10. public GlobalizationViewModel OpenPopupViewerBtnText { get; set; }
  11. public int AmountImagesInCarouselDesktop { get; set; }
  12. public int AmountImagesInCarouselMobile { get; set; }
  13.  
  14. public int TotalAmountOfImages => Images.Count;
  15. public int AmountDefaultImagesUsed { get; set; } = 0;
  16. }
  17. }
Add Comment
Please, Sign In to add comment