public WatchDogMessage(WatchDogMessageType type, string user, string path, string basepath)
 {
     LocalRoot = basepath;
     Type      = type;
     User      = user;
     Path      = path;
 }
 public WatchDogMessage(WatchDogMessageType type, string user, string path, int time, int flow, string basepath)
 {
     LocalRoot = basepath;
     Type      = type;
     User      = user;
     Path      = path;
     Time      = time;
     Flow      = flow;
 }