1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 13:57:26 +08:00

Improve equality implementations

This commit is contained in:
Dean Herbert 2024-03-26 20:21:12 +08:00
parent bb9fa52fda
commit 9474156df4
No known key found for this signature in database
2 changed files with 6 additions and 21 deletions

View File

@ -23,15 +23,7 @@ namespace osu.Game.Online.API.Requests.Responses
return Images.SequenceEqual(other.Images);
}
public override bool Equals(object? obj)
{
if (ReferenceEquals(null, obj)) return false;
if (ReferenceEquals(this, obj)) return true;
if (obj.GetType() != GetType()) return false;
return Equals((APIMenuContent)obj);
}
public override bool Equals(object? other) => other is APIMenuContent content && Equals(content);
public override int GetHashCode()
{

View File

@ -28,34 +28,27 @@ namespace osu.Game.Online.API.Requests.Responses
/// The time at which this item should begin displaying. If <c>null</c>, will display immediately.
/// </summary>
[JsonProperty(@"begins")]
public DateTimeOffset? Begins { get; set; }
public DateTimeOffset? Begins { get; init; }
/// <summary>
/// The time at which this item should stop displaying. If <c>null</c>, will display indefinitely.
/// </summary>
[JsonProperty(@"expires")]
public DateTimeOffset? Expires { get; set; }
public DateTimeOffset? Expires { get; init; }
public bool Equals(APIMenuImage? other)
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
return Image == other.Image && Url == other.Url;
return Image == other.Image && Url == other.Url && Begins == other.Begins && Expires == other.Expires;
}
public override bool Equals(object? obj)
{
if (ReferenceEquals(null, obj)) return false;
if (ReferenceEquals(this, obj)) return true;
if (obj.GetType() != GetType()) return false;
return Equals((APIMenuImage)obj);
}
public override bool Equals(object? other) => other is APIMenuImage content && Equals(content);
public override int GetHashCode()
{
return HashCode.Combine(Image, Url);
return HashCode.Combine(Image, Url, Begins, Expires);
}
}
}