2019-04-11 21:43:05 -04:00
|
|
|
|
using SharedLibraryCore.Interfaces;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace WebfrontCore.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ConfigurationInfo
|
|
|
|
|
{
|
2019-04-14 11:55:05 -04:00
|
|
|
|
public string PropertyName { get; set; }
|
2019-04-11 21:43:05 -04:00
|
|
|
|
public PropertyInfo PropertyInfo { get; set; }
|
|
|
|
|
public IList PropertyValue { get; set; }
|
|
|
|
|
public IBaseConfiguration Configuration { get; set; }
|
|
|
|
|
public int NewItemCount { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|