duheng
2024-03-28 6c93aedfeeb66023f9506083517aee1a4e18e24d
WebApi/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs
@@ -1,35 +1,21 @@
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace YwUser.Web.SysApi.Areas.HelpPage.ModelDescriptions
namespace IStation.WebApi.Areas.HelpPage.ModelDescriptions
{
    /// <summary>
    /// /
    /// </summary>
    public class ParameterDescription
    {
        /// <summary>
        /// /
        /// </summary>
        public ParameterDescription()
        {
            Annotations = new Collection<ParameterAnnotation>();
        }
        /// <summary>
        ///
        /// </summary>
        public Collection<ParameterAnnotation> Annotations { get; private set; }
        /// <summary>
        ///
        /// </summary>
        public string Documentation { get; set; }
        /// <summary>
        ///
        /// </summary>
        public string Name { get; set; }
        /// <summary>
        ///
        /// </summary>
        public ModelDescription TypeDescription { get; set; }
    }
}