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

Apps() public method

Public Constructor
public Apps ( string name, string description, string author, string authoremail, string appicon, string screenshots, string type, string category )
name string Name of the app
description string Description of the app
author string Author of the app
authoremail string AuthorEmail
appicon string AppIcon
screenshots string Screenshots
type string Type of the app
category string Category of the app
        public Apps(string name,string description, string author, string authoremail,string appicon,string []screenshots,string type,string category)
        {
            Name = name.Trim();
            Description = description.Trim();
            Author = author.Trim();
            AuthorEmail = authoremail.Trim();
            AppIcon = appicon.Trim();
            Screenshots = screenshots;
            Category = category.Trim();
            Type = type.Trim();
        }
Apps