| 19 | int64_t GetId() const noexcept { return this->Id; } |
| 20 | int64_t GetLine() const noexcept { return this->Line; } |
| 21 | void ChangeLine(int64_t line) noexcept { this->Line = line; } |
| 22 | bool GetIsValid() const noexcept { return this->IsValid; } |
| 23 | void Invalid() noexcept { this->IsValid = false; } |
| 24 | }; |