First time with this error - Inconsistent accessibility

后端 未结 3 1183
广开言路
广开言路 2021-01-20 15:11

This is my first time working with interfaces and proper namespace structure. When I compile I get the error below, I have no idea what it means. Any searches I do shows up

3条回答
  •  太阳男子
    2021-01-20 15:42

    You have a public property on a public class that exposes a list of non-public types.
    You need to change IOperatorRequest to be public or change the UrlBuilderO2 class or GetUrlReuests method to be non-public.

提交回复
热议问题