1234567891011121314151617181920212223242526 |
- using HslCommunication.LogNet;
- using ProjectManagementSystem.Common.Extenions;
- using ProjectManagementSystem.Common.Logger;
- using PropertyChanged;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ProjectManagementSystemView.ViewModels
- {
- [AddINotifyPropertyChangedInterface]
- public class LogViewModel
- {
- public string LogDir { get; set; }
- public LogViewModel()
- {
- LogDir = CLog.Instance.LogDir;
- }
- }
- }
|