yavsc/web/Admin/Export.cs

25 lines
462 B
C#

10 years ago
using System;
using System.ComponentModel;
namespace Yavsc.Model.Admin
10 years ago
{
/// <summary>
/// Export.
/// </summary>
10 years ago
public class Export: TaskOutput
{
/// <summary>
/// Initializes a new instance of the <see cref="Yavsc.Model.Admin.Export"/> class.
/// </summary>
10 years ago
public Export ()
{
}
/// <summary>
/// Gets or sets the name of the file.
/// </summary>
/// <value>The name of the file.</value>
10 years ago
public string FileName { get; set; }
}
}