14 lines
297 B
C#
14 lines
297 B
C#
using IOB_UT_NEXT.Config.Special;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IOB_UT_NEXT.Objects
|
|
{
|
|
/// <summary>
|
|
/// Elenco task di tipo FTP
|
|
/// </summary>
|
|
public class FtpTaskList
|
|
{
|
|
public List<FtpActConf> ListTask { get; set; } = new List<FtpActConf>();
|
|
}
|
|
}
|