Could you please help me where to set the useFullTypeNameInSchemaIds so that I can use classes with same names but in different namespaces?
solved it by adding
services.AddSwaggerGen(c =>
{
c.CustomSchemaIds((type) => type.FullName);
});
Most helpful comment
solved it by adding