public override bool Equals(object obj)
        {
            if (Object.ReferenceEquals(this, obj))
            {
                return(true);
            }

            RolePermissionStateEventIdDto other = obj as RolePermissionStateEventIdDto;

            if (other == null)
            {
                return(false);
            }

            return(_value.Equals(other._value));
        }
 protected RolePermissionStateEventDtoBase(RolePermissionStateEventIdDto stateEventId)
 {
     this.StateEventId = stateEventId;
 }