using System.Collections.Generic; namespace ModuleTools.ViewModels { /// /// Список возвращаемых значений /// /// public class ListViewModel where T : ElementViewModel { public int MaxCount { get; set; } public List List { get; set; } } }