gmarokov/dotnet-trx2sonar

View on GitHub
TrxToSonar/Model/Trx/TestMethod.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System.Xml.Serialization;

namespace TrxToSonar.Model.Trx
{
    public class TestMethod
    {
        [XmlAttribute(AttributeName = "codeBase")]
        public string CodeBase { get; set; }

        [XmlAttribute(AttributeName = "className")]
        public string ClassName { get; set; }

        [XmlAttribute(AttributeName = "name")]
        public string Name { get; set; }
    }
}