QuickImage – Rev 1
?pathlinks?
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QuickImage
{
public class FileProgress
{
public FileProgress(string file, IEnumerable<string> tags, Bitmap thumbnail, bool success)
{
File = file;
Tags = tags;
Success = success;
Thumbnail = thumbnail;
}
public string File { get; }
public IEnumerable<string> Tags { get; }
public bool Success { get; }
public Bitmap Thumbnail { get; }
}
}