laatzen/Common/Service/MeterProcessState/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs

13 lines
272 B
C#
Raw Normal View History

using System;
2021-10-01 09:09:20 +00:00
namespace Service.MeterProcessState.Areas.HelpPage.ModelDescriptions
{
public class EnumValueDescription
{
public String Documentation { get; set; }
2021-10-01 09:09:20 +00:00
public String Name { get; set; }
2021-10-01 09:09:20 +00:00
public String Value { get; set; }
2021-10-01 09:09:20 +00:00
}
}