/// /// Represents a user reporting state. /// public enum UserReportingState { /// /// Idle. /// Idle = 0, /// /// Creating bug report. /// CreatingUserReport = 1, /// /// Showing form. /// ShowingForm = 2, /// /// Submitting form. /// SubmittingForm = 3 }