ChengDa_English/SGGL/WebAPI/Areas/HelpPage/ModelDescriptions/ModelDescription.cs

16 lines
329 B
C#
Raw Normal View History

2022-03-15 17:36:38 +08:00
using System;
namespace WebAPI.Areas.HelpPage.ModelDescriptions
{
/// <summary>
/// Describes a type model.
/// </summary>
public abstract class ModelDescription
{
public string Documentation { get; set; }
public Type ModelType { get; set; }
public string Name { get; set; }
}
}