using System; using System.ComponentModel.DataAnnotations; namespace Yavsc.Model.Admin { /// /// Restore query. /// public class RestoreQuery: DataAccess { /// /// Gets or sets the name of the file. /// /// The name of the file. [Required] [StringLength(2056)] public string FileName { get; set ; } /// /// Initializes a new instance of the class. /// public RestoreQuery () { } } }