checkpoint
This commit is contained in:
@@ -8,9 +8,20 @@ namespace Foodsoft.Alpm
|
||||
public string Name { get; }
|
||||
public string Hash { get; }
|
||||
|
||||
public bool Equals(Backup other) => Name == other.Name && Hash == other.Hash;
|
||||
public override bool Equals(object? obj) => obj is Backup other && Equals(other);
|
||||
public override int GetHashCode() => HashCode.Combine(Name, Hash);
|
||||
public bool Equals(Backup other)
|
||||
{
|
||||
return Name == other.Name && Hash == other.Hash;
|
||||
}
|
||||
|
||||
public override bool Equals(object? obj)
|
||||
{
|
||||
return obj is Backup other && Equals(other);
|
||||
}
|
||||
|
||||
public override int GetHashCode()
|
||||
{
|
||||
return HashCode.Combine(Name, Hash);
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
private readonly unsafe struct NativeBackup
|
||||
|
||||
Reference in New Issue
Block a user