(LocalizedString other)
| 104 | |
| 105 | /// <inheritdoc /> |
| 106 | public bool Equals(LocalizedString other) |
| 107 | { |
| 108 | return (object)other != null && Id == other.Id && Value == other.Value; |
| 109 | } |
| 110 | |
| 111 | /// <inheritdoc /> |
| 112 | public bool Equals(string other) |
no test coverage detected