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