AppStore.Models.Card.Card C# (CSharp) Method

Card() public method

Public constructor
public Card ( string question, string answer, string hint, string imagePath )
question string String question
answer string String answer
hint string String hint
imagePath string String imagePath
        public Card(string question, string answer, string hint, string imagePath)
        {
            this.mQuestion = question;
            this.mAnswer = answer;
            this.mHint = hint;
            this.mImagePath = imagePath;
        }