aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Xml/IXmlReaderSettingsFactory.cs
blob: b9628ec3eb0795127324f8590b60b505ab573d53 (plain)
1
2
3
4
5
6
7
8
9
using System.Xml;

namespace MediaBrowser.Model.Xml
{
    public interface IXmlReaderSettingsFactory
    {
        XmlReaderSettings Create(bool enableValidation);
    }
}