Knocks/BackEnd/Knoks.Framework/Document/IDocumentOptions.cs

9 lines
226 B
C#

namespace Knoks.Framework.Document
{
public interface IDocumentOptions
{
bool Replace { get; set; }
string UploadDirectoryPath { get; set; }
string DownloadDirectoryPath { get; set; }
}
}