1
pengmn
2025-07-01 b1161509ecc6f599b1c06c7f54ff3b27f0618178
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections.ObjectModel;
 
namespace $rootnamespace$.Areas.HelpPage.ModelDescriptions
{
    public class ComplexTypeModelDescription : ModelDescription
    {
        public ComplexTypeModelDescription()
        {
            Properties = new Collection<ParameterDescription>();
        }
 
        public Collection<ParameterDescription> Properties { get; private set; }
    }
}