Commit d007fc10 authored by Krishna Reddy Tamatam's avatar Krishna Reddy Tamatam

Added one more param

parent 70ff6066
...@@ -149,6 +149,7 @@ namespace FTP_Services.Core.Models ...@@ -149,6 +149,7 @@ namespace FTP_Services.Core.Models
public string FTPServiceURL { get; set; } public string FTPServiceURL { get; set; }
public int DPI { get; set; } public int DPI { get; set; }
public int PDFSizeLimit { get; set; } public int PDFSizeLimit { get; set; }
public string DefaultDocType { get; set; }
public bool IsActive { get; set; } public bool IsActive { get; set; }
public ConfigValues() public ConfigValues()
...@@ -160,6 +161,7 @@ namespace FTP_Services.Core.Models ...@@ -160,6 +161,7 @@ namespace FTP_Services.Core.Models
FTPServiceURL = ""; FTPServiceURL = "";
DPI =100; DPI =100;
PDFSizeLimit =20; PDFSizeLimit =20;
DefaultDocType ="";
IsActive = true; IsActive = true;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment