view Implab.ServiceHost/Unity/ProvidesElement.cs @ 279:8714471e8d78 v3

Container configuration cleanup, RC2
author cin
date Fri, 04 May 2018 18:12:42 +0300
parents 6691aff01de1
children e0916ddc9950
line wrap: on
line source

using System.Xml.Serialization;

namespace Implab.ServiceHost.Unity {
    public class ProvidesElement {
        [XmlAttribute("type")]
        public string RegistrationType { get; set; }

        [XmlAttribute("name")]
        public string RegistrationName { get; set; }
    }
}