2021-10-01 09:09:20 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Service.MeterProcessState.Areas.HelpPage.ModelDescriptions
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Describes a type model.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract class ModelDescription
|
|
|
|
|
{
|
2022-10-19 10:58:08 +00:00
|
|
|
public String Documentation { get; set; }
|
2021-10-01 09:09:20 +00:00
|
|
|
|
|
|
|
|
public Type ModelType { get; set; }
|
|
|
|
|
|
2022-10-19 10:58:08 +00:00
|
|
|
public String Name { get; set; }
|
2021-10-01 09:09:20 +00:00
|
|
|
}
|
|
|
|
|
}
|