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