I Keep Getting Error CS0052

I Keep Getting this weird error when i try to do a simple enum. This is the error - "Assets/Scripts/Dude.cs(33,27): error CS0052: Inconsistent accessibility: field type Dude.WeaponType' is less accessible than field Dude.weapontype’

Code-

enum WeaponType {
		Staff, Dagger, Mace, Sword, Banana
	}

	public WeaponType weapontype;


	void Update () {
		if (weapontype == WeaponType.Banana) {
			print ("Not much of a weapon if you ask me...");
		}

I need help!

Thank You!!!