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

16 lines
347 B
C#
Raw Normal View History

using System.Collections.Generic;
2022-03-20 10:10:44 +04:00
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; }
}
}