Files
StructureHelper/Infrastructure/NamedList.cs
NickAppLab 60eb406cbe Init commit
2022-06-13 21:24:13 +05:00

10 lines
176 B
C#

using System.Collections.Generic;
namespace StructureHelper.Infrastructure
{
public class NamedList<T> : List<T>
{
public string Name { get; set; }
}
}