C# Class AppStore.Models.WordModel

It is model for the Spelings App-Template.
Show file Open project: BuildmLearn/BuildmLearn-Store Class Usage Examples

Public Methods

Method Description
WordModel ( string word, string description )

Public Construtor to the model.

getDescription ( ) : string

Gets the description with the WordModel object.

getWord ( ) : string

Gets the word with the WordModel object.

setDescription ( string mDescription ) : void

Sets the description to the WordModel object.

setWord ( string mWord ) : void

Sets the word to the WordModel object.

Method Details

WordModel() public method

Public Construtor to the model.
public WordModel ( string word, string description )
word string String Word
description string String Description

getDescription() public method

Gets the description with the WordModel object.
public getDescription ( ) : string
return string

getWord() public method

Gets the word with the WordModel object.
public getWord ( ) : string
return string

setDescription() public method

Sets the description to the WordModel object.
public setDescription ( string mDescription ) : void
mDescription string String description
return void

setWord() public method

Sets the word to the WordModel object.
public setWord ( string mWord ) : void
mWord string String word
return void