EOLStatus - overrides implemented

This commit is contained in:
Stoyan Zlatev
2024-09-04 12:01:55 +02:00
parent 9260059bb7
commit e8a79be6e6
@@ -31,6 +31,10 @@
return $"{this.option}";
}
public override Boolean Equals(object other) => other is EOLStatus status && status == this;
public override Int32 GetHashCode() => this.option?.GetHashCode() ?? 0;
public static implicit operator EOLStatus (String _string)
{
var status = default(EOLStatus);