You have installed tin the instance MyClass, but you are trying to use it as if it were the class itself.
You need to either import MyClassfrom your IronPython script, or introduce some kind of factory method (since classes are not first-class objects in C #, you cannot pass in MyClass). Alternatively, you can go through typeof(MyClass)and use System.Activator.CreateInstance(theMyClassTypeObject)for a new instance.
MyEnum ( , script - , ), :
import clr
clr.AddReference('YourAssemblyName')
from YourAssemblyName.WhateverNamespace import MyClass, MyEnum
mc = MyClass()
me = MyEnum.One
, script ( , File ) script clr.AddReference().