Nancy.Demo.SuperSimpleViewEngine.Models.MainModel.MainModel C# (CSharp) 메소드

MainModel() 공개 메소드

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
리턴 System
        public MainModel(string name, IEnumerable<User> users, string naughtyStuff)
        {
            this.Name = name;
            this.Users = users;
            this.NaughtyStuff = naughtyStuff;
        }
MainModel