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

Categories() public method

Public Constructor
public Categories ( string mName, string mBackground )
mName string Title of the Category
mBackground string Background to be used for the tile of this Category
        public Categories(string mName, string mBackground)
        {
            Name = mName;
            Background = mBackground;
        }
    }
Categories