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

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