public bool Equals(IdValueBase <T> other) { if (ReferenceEquals(null, other)) { return(false); } return(Equals(Value, other.Value)); }
/// <inheritdoc /> public override void Write(Utf8JsonWriter writer, IdValueBase <Guid> value, JsonSerializerOptions options) { writer.WriteStringValue(value.Value.ToString("N")); }