C#代码运行遇到自己不能解决的问题

enum gender
{
男,

}
public struct person
{
public string name;
public gender sex;
public int age;
}
class Program
{
static void Main(string[] args)
{
person person1;
person1.name = "张三";
person1.sex = gender.男;
person1.age = 18;

        Console.WriteLine("我叫{0},我今年{1}岁,我是{2}的.",person1.name,person1.age,person1.sex);
        Console.ReadKey();
    }
}

我在VS上运行这段代码时,遇到了"可访问性不一致的问题",出自第16行的sex,vs提示说是字段类型"_07结构.gender"比字段"_07结构.person.sex"的可访问性低

请问怎么解决?

sex定义成int类型。