yavsc/web/Admin/Export.cs

24 lines
462 B
C#
Raw Normal View History

2014-07-16 20:35:03 +02:00
using System;
using System.ComponentModel;
2015-10-10 13:38:07 +02:00
namespace Yavsc.Model.Admin
2014-07-16 20:35:03 +02:00
{
/// <summary>
/// Export.
/// </summary>
2014-07-16 20:35:03 +02:00
public class Export: TaskOutput
{
/// <summary>
2015-10-10 13:38:07 +02:00
/// Initializes a new instance of the <see cref="Yavsc.Model.Admin.Export"/> class.
/// </summary>
2014-07-16 20:35:03 +02:00
public Export ()
{
}
/// <summary>
/// Gets or sets the name of the file.
/// </summary>
/// <value>The name of the file.</value>
2014-07-16 20:35:03 +02:00
public string FileName { get; set; }
}
}