| 12345678910111213141516171819202122232425 |
- using Quadarax.Application.QLiberace.Common.Settings;
- namespace Quadarax.Application.QLiberace.Base.Tests.Services.Fakes
- {
- public class ModuleSettingWoAttributeFake : ModuleSetting, IEquatable<ModuleSettingWoAttributeFake>
- {
- public bool Equals(ModuleSettingWoAttributeFake? other)
- {
- return true;
- }
- public override bool Equals(object? obj)
- {
- if (ReferenceEquals(null, obj)) return false;
- if (ReferenceEquals(this, obj)) return true;
- if (obj.GetType() != this.GetType()) return false;
- return Equals((ModuleSettingWoAttributeFake)obj);
- }
- public override int GetHashCode()
- {
- return 0;
- }
- }
- }
|