public FileMetaData(int fileId, string FullLocalPath, string FileName, DefinedFileTypes fileType)
 {
     this.FileId = fileId;
     this.FullLocalPath = FullLocalPath;
     this.FileName = FileName;
     this.FileType = fileType;
 }
 public FileMetaData(string FullLocalPath, string FileName)
 {
     this.FullLocalPath = FullLocalPath;
     this.FileName = FileName;
     this.FileType = DefinedFileTypes.GENERIC;
 }