Added absolute path to fileManager

This commit is contained in:
Lucio Maranta
2018-08-30 11:34:47 +00:00
parent c8f5fd6bbb
commit c0d9df06a8
4 changed files with 86 additions and 67 deletions
+12 -10
View File
@@ -281,6 +281,7 @@ namespace CMS_CORE_Library
public class PreviewFileModel
{
public string Name;
public string Path;
public string AbsolutePath;
public bool IsDirectory;
}
@@ -292,6 +293,7 @@ namespace CMS_CORE_Library
public DateTime LastModDate;
public List<string> Content;
public string PreviewBase64;
public string AbsolutePath;
}
public class ActiveProgramDataModel
@@ -717,6 +719,7 @@ namespace CMS_CORE_Library
public int MaxToolsPerFamily;
public int MaxMultitools;
public int MaxToolsPerMultitools;
public int MaxOffsets;
public bool MultitoolOptionActive;
public bool FamilyOptionActive;
@@ -766,34 +769,33 @@ namespace CMS_CORE_Library
public int Balluf { get; set; }
public byte MagazinePositionType { get; set; }
public byte MagazineId { get; set; }
public byte PositionId { get; set; }
public byte MagazinePositionType { get; set; }
}
public class NcToolModel
{
public int ToolId { get; set; }
public int FamilyId { get; set; }
public int ShankId { get; set; }
public byte Status { get; set; }
public int OffsetLength { get; set; }
public int ResidualLife { get; set; }
public int ResidualRevive { get; set; }
public byte Status { get; set; }
public int FamilyId { get; set; }
public int ShankId { get; set; }
public int OffsetId1 { get; set; }
public int OffsetId2 { get; set; }
public int OffsetId3 { get; set; }
public int ResidualRevive { get; set; }
}
public class NcFamilyModel