Exemplo n.º 1
0
        public DirectoryMeta(string path, StoreBanner banner)
        {
            Name = (new DirectoryInfo(path)).Name;

            StoreBanner   = banner;
            DirectoryPath = path;
        }
Exemplo n.º 2
0
 public DirectoryMeta(int id, StoreBanner storeBanner, bool isRevitProject, string directoryPath, string name)
 {
     Id             = id;
     StoreBanner    = storeBanner;
     IsRevitProject = isRevitProject;
     DirectoryPath  = directoryPath;
     Name           = name;
 }