Inside mvc4 I have model
public class MyViewModel
{
public SomeEnum MyEnum { get; set; }
public string Name { get; set; }
}
this SomeEnum is located in other dll which is referenced from my web app. I cannot change this dll (SomeEnum) but for further clarity I want to use this enum (SomeEnum) but with little extension, I want to add few more enum properties.
How this can be done?