QuickImage – Rev 1

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

namespace QuickImage
{
    public class FileProgressSuccess : FileProgress
    {
        public FileProgressSuccess(string file, IEnumerable<string> tags, Bitmap thumbnail) : base(file, tags, thumbnail,true)
        {

        }
    }
}