AAndrei Misiukevichstarted carouselProcessor
61069b6f创建于 2020年4月27日历史提交
using System.Collections.Generic;
using PanCardView.Enums;
using Xamarin.Forms;

namespace PanCardView.Utility
{
    public struct ProcessorItem
    {
        public bool IsFront { get; set; }
        public AnimationDirection Direction { get; set; }
        public IEnumerable<View> Views { get; set; }
        public IEnumerable<View> InactiveViews { get; set; }
    }
}