15 lines
176 B
C#
15 lines
176 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace Yavsc.Admin
|
|
{
|
|
public class Export: TaskOutput
|
|
{
|
|
public Export ()
|
|
{
|
|
}
|
|
public string FileName { get; set; }
|
|
}
|
|
}
|
|
|