IDataPreview.cs 403 B

12345678910111213141516
  1. using CommunityToolkit.Mvvm.Input;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows.Input;
  8. namespace ShakerApp.ViewModels
  9. {
  10. public interface IDataPreview
  11. {
  12. public bool UpSignalData { get; set; }
  13. public ICommand WindowCloseCommand => new RelayCommand(() => UpSignalData = false);
  14. }
  15. }