18 using erminas.SmartAPI.Utils;
20 namespace erminas.SmartAPI.CMS.Project.ContentClasses.Elements
29 internal class InfoAttribute : IInfoAttribute
31 internal InfoAttribute(XmlElement xmlElement)
34 Id =
int.Parse(xmlElement.GetAttributeValue(
"id"));
35 Name = xmlElement.GetAttributeValue(
"name");
38 public int Id {
get;
private set; }
39 public string Name {
get;
private set; }
40 public InfoType Type {
get;
private set; }