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

View File

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