Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

21 linhas
562 B

  1. using System;
  2. public class LocalGameState
  3. {
  4. public LocalGameState(Version localGameVersion, string localSaveStateGuid, string installGuid, bool isNewInstall)
  5. {
  6. this.LocalGameVersion = localGameVersion;
  7. this.LocalSaveStateGuid = localSaveStateGuid;
  8. this.InstallGuid = installGuid;
  9. this.IsNewInstall = isNewInstall;
  10. }
  11. public Version LocalGameVersion { get; private set; }
  12. public string LocalSaveStateGuid { get; private set; }
  13. public string InstallGuid { get; private set; }
  14. public bool IsNewInstall { get; private set; }
  15. }