@Override
public Account readFrom(ProtobufReader reader) throws IOException {
int id = reader.readInt("id");
String description = reader.readString("description");
Account account = new Account();
account.setId(id);
account.setDescription(description);
return account;
}