public class CommonEventBase { private int _errorCode; public int ErrorCode { get { return _errorCode; } set { _errorCode = value; } } } public class CustomEvent : CommonEventBase { }