DepartmentProject/DepartmentPortal/Common/ToolsModule/ManagmentEntity/ListViewModel.cs

16 lines
347 B
C#

using System.Collections.Generic;
namespace ToolsModule.ManagmentEntity
{
/// <summary>
/// Список возвращаемых значений
/// </summary>
/// <typeparam name="T"></typeparam>
public class ListViewModel<T>
where T : ElementViewModel
{
public int MaxCount { get; set; }
public List<T> List { get; set; }
}
}