Nancy.Demo.SuperSimpleViewEngine.Models.MainModel.MainModel C# (CSharp) Method

MainModel() public method

Initializes a new instance of the T:System.Object class.
public MainModel ( string name, IEnumerable users, string naughtyStuff ) : System
name string
users IEnumerable
naughtyStuff string
return System
        public MainModel(string name, IEnumerable<User> users, string naughtyStuff)
        {
            this.Name = name;
            this.Users = users;
            this.NaughtyStuff = naughtyStuff;
        }
MainModel