9 public readonly
string Type;
13 public PropertyModel(
string parameterName,
string apiParameterName,
string type,
string description,
bool isReadOnly,
string parameterType)
27 public override bool Equals(
object? obj)
37 hashCode = (hashCode * 397) ^
Type.GetHashCode();
39 hashCode = (hashCode * 397) ^
Description.GetHashCode();
40 hashCode = (hashCode * 397) ^
IsReadOnly.GetHashCode();
50 return !left.
Equals(right);
readonly string Description
static bool operator==(PropertyModel left, PropertyModel right)
override bool Equals(object? obj)
static bool operator!=(PropertyModel left, PropertyModel right)
readonly string ApiParameterName
bool Equals(PropertyModel other)
readonly string ParameterType
override int GetHashCode()
readonly string ParameterName
PropertyModel(string parameterName, string apiParameterName, string type, string description, bool isReadOnly, string parameterType)