LongViewModel.cs 355 B

12345678910111213
  1. using System.ComponentModel;
  2. using System.Reflection;
  3. namespace SukiUI.Controls
  4. {
  5. public sealed class LongViewModel : PropertyViewModelBase<long?>
  6. {
  7. public LongViewModel(INotifyPropertyChanged viewmodel, string displayName, PropertyInfo propertyInfo)
  8. : base(viewmodel, displayName, propertyInfo)
  9. {
  10. }
  11. }
  12. }