Exemplo n.º 1
0
 public AccountCreationResult(long accountId, AccountCreationErrorCodeFlags errorCodeFlags)
 {
     this.accountId      = accountId;
     this.errorCodeFlags = errorCodeFlags;
 }
Exemplo n.º 2
0
 public void Deserialize(IPofReader reader)
 {
     accountId      = reader.ReadS64(0);
     errorCodeFlags = (AccountCreationErrorCodeFlags)reader.ReadS32(1);
 }