using System; using System.Collections.Generic; namespace Active_Client.Browser_Tools.Models { public class InfoFile { public String Name; public String AbsolutePath; public DateTime CreationDate; public DateTime LastModDate; public List Content; public Boolean CanEdit; public string PreviewBase64; } }