AppStore.Models.QuizModel.setTotalCorrect C# (CSharp) Method

setTotalCorrect() public method

Sets the total correct answers by the user.
public setTotalCorrect ( int totalCorrect ) : void
totalCorrect int Total number of correct answers
return void
        public void setTotalCorrect(int totalCorrect)
        {
            this.totalCorrect = totalCorrect;
        }
    }