David Hartman 31437b9492 Web api dev (#163)
* initial commit

* removed old files

* initial commit
2017-04-02 11:11:35 +03:00

11 lines
242 B
C#

namespace securecall.Areas.HelpPage.ModelDescriptions
{
public class EnumValueDescription
{
public string Documentation { get; set; }
public string Name { get; set; }
public string Value { get; set; }
}
}