QuickImage – Rev 1

Subversion Repositories:
Rev:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace QuickImage
{
    public class ImageListViewItemProgressSuccess<T> : ImageListViewItemProgress<T>
    {
        public ImageListViewItemProgressSuccess(T item) : base(item, true)
        {

        }

        public ImageListViewItemProgressSuccess(T item, IEnumerable<string> tags) : base(item, true)
        {
            Tags = tags;
        }

        public ImageListViewItemProgressSuccess(T item, IEnumerable<string> tags, bool check) : this(item, tags)
        {
            Check = check;
        }

        public bool Check { get; set; }

        public IEnumerable<string> Tags { get; } = Enumerable.Empty<string>();
    }
}