public static void SaveProfile(ProfileModel profile)
 {
     JsonSerDer.SaveObject(profile, PathManager.GetProfilePath(profile.Id));
 }
Exemple #2
0
 public static void SaveSession(int profileId, SessionModel session)
 {
     JsonSerDer.SaveObject(session, PathManager.GetSessionInfoPath(profileId, session.Id));
 }