LogViewModel.cs 598 B

1234567891011121314151617181920212223242526
  1. using HslCommunication.LogNet;
  2. using ProjectManagementSystem.Common.Extenions;
  3. using ProjectManagementSystem.Common.Logger;
  4. using PropertyChanged;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Collections.ObjectModel;
  8. using System.Data;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. namespace ProjectManagementSystemView.ViewModels
  13. {
  14. [AddINotifyPropertyChangedInterface]
  15. public class LogViewModel
  16. {
  17. public string LogDir { get; set; }
  18. public LogViewModel()
  19. {
  20. LogDir = CLog.Instance.LogDir;
  21. }
  22. }
  23. }