Add Override ToString() for ResizeSize class (#19562)

Narrator now reads Name of the ResizeSize instead of the class name
This commit is contained in:
Stefan Markovic 2022-07-21 23:20:02 +02:00 committed by GitHub
parent 3caef119a7
commit f0e045d17d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -152,5 +152,10 @@ namespace ImageResizer.Models
return value;
}
}
public override string ToString()
{
return Name;
}
}
}