yavsc/booking/Admin/Export.cs

25 lines
462 B
C#

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