using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Core; using Tango.Integration.Storage; namespace Tango.MachineStudio.Storage.Models { public class StorageFileHandlerModel : ExtendedObject { public StorageFileHandler Handler { get; set; } public StorageFileHandlerType Type { get; set; } public String FilePath { get; set; } public StorageFileHandlerModel(StorageFileHandler handler, String filePath, StorageFileHandlerType type) { FilePath = filePath; Handler = handler; Type = type; } } }