gmarokov/dotnet-trx2sonar

View on GitHub
TrxToSonar/Model/Sonar/Error.cs

Summary

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

namespace TrxToSonar.Model.Sonar
{
    public class Error
    {
        [XmlAttribute(AttributeName = "message")]
        public string Message { get; set; }

        [XmlText]
        public string Value { get; set; }
    }
}