| | |
| | | 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 EnumTypeModelDescription : ModelDescription |
| | | { |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public EnumTypeModelDescription() |
| | | { |
| | | Values = new Collection<EnumValueDescription>(); |
| | | } |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | |
| | | public Collection<EnumValueDescription> Values { get; private set; } |
| | | } |
| | | } |