using System; using System.ComponentModel; namespace Yavsc.Model.Admin { /// /// Export. /// public class Export: TaskOutput { /// /// Initializes a new instance of the class. /// public Export () { } /// /// Gets or sets the name of the file. /// /// The name of the file. public string FileName { get; set; } } }