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