19 lines
439 B
C#
19 lines
439 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace XPrint.Production.Business.ImageLogic.Conf
|
||
{
|
||
public class LocalConfigure
|
||
{
|
||
public string ProductionImageFolder { get; set; } = "";
|
||
public int Dpi { get; set; } = 300;
|
||
|
||
public float ProductionHeight { get; set; } = 590;//单位:MM
|
||
public LocalConfigure() { }
|
||
|
||
}
|
||
}
|