gmarokov/dotnet-trx2sonar

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

Summary

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

namespace TrxToSonar.Model.Trx
{
    public class Execution
    {
        [XmlAttribute(AttributeName = "id")]
        public string Id { get; set; }
    }
}