Esempio n. 1
0
 public FileModel(string fullPath, string fileName, FileStateType currentState)
 {
     FullPath     = fullPath;
     FileName     = fileName;
     CurrentState = currentState;
 }
Esempio n. 2
0
 protected virtual void OnStateChanged(FileStateType e)
 {
     StateChanged?.Invoke(this, e);
 }
Esempio n. 3
0
 private void StateChanged(object sender, FileStateType e)
 {
     State = e;
 }