using System; using System.IO; using System.Collections.Generic; namespace Yavsc.Model.FileSystem { /// /// File info collection. /// public class FileInfoCollection: List { /// /// Gets or sets the owner. /// /// The owner. public string Owner { get; set; } /// /// Initializes a new instance of the class. /// /// Files. public FileInfoCollection (FileInfo [] files) { AddRange (files); } } }