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

9 lines
261 B
C#

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