10 lines
176 B
C#
10 lines
176 B
C#
using System.Collections.Generic;
|
|
|
|
namespace StructureHelper.Infrastructure
|
|
{
|
|
public class NamedList<T> : List<T>
|
|
{
|
|
public string Name { get; set; }
|
|
}
|
|
}
|