using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UnvisableComponents { public class ImageInfo { private string path; private string title; private List files; public string Path { get { return path; } set { path = value; } } public string Title { get { return title; } set { title = value; } } public List Files { get { return files; } set { files = value; } } public ImageInfo() { } } }