Getting rid of a compiler warning regarding deprecated ExportOptions type.

This commit is contained in:
Sipke Schoorstra
2015-09-02 14:10:41 +01:00
parent 748a354632
commit ce15e438ca

View File

@@ -1,8 +1,10 @@
using System.Xml.Linq;
using System;
using System.Xml.Linq;
namespace Orchard.ImportExport.Models {
public class ExportContext {
public XDocument Document { get; set; }
[Obsolete]
public ExportOptions ExportOptions { get; set; }
}
}