14 lines
286 B
C#
14 lines
286 B
C#
using IOB_UT_NEXT.Config;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IOB_UT_NEXT.Objects
|
|
{
|
|
/// <summary>
|
|
/// Elenco task generici
|
|
/// </summary>
|
|
public class GenTaskList
|
|
{
|
|
public List<GenActConf> ListTask { get; set; } = new List<GenActConf>();
|
|
}
|
|
}
|