2021-03-26 20:09:52 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2022-03-20 10:10:44 +04:00
|
|
|
|
namespace ToolsModule.ManagmentEntity
|
2021-03-26 20:09:52 +04:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Список возвращаемых значений
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T"></typeparam>
|
|
|
|
|
public class ListViewModel<T>
|
|
|
|
|
where T : ElementViewModel
|
|
|
|
|
{
|
|
|
|
|
public int MaxCount { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<T> List { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|