using System.Windows; namespace Muchinfo.DataPager.Base { public class MuchinfoNumericElementViewModel { public object Content { get; private set; } public int PageIndex { get; private set; } public bool IsCurrent { get; private set; } public string GroupName { get; private set; } public Style NumericButtonStyle { get; private set; } public MuchinfoNumericElementViewModel(object content, int pageIndex, bool isCurrent, string groupName, Style numericButtonStyle) { this.Content = content; this.PageIndex = pageIndex; this.IsCurrent = isCurrent; this.GroupName = groupName; this.NumericButtonStyle = numericButtonStyle; } } }