11 lines
272 B
C#
11 lines
272 B
C#
namespace CadParamPluging.Domain.Models
|
|
{
|
|
public class TemplateParams
|
|
{
|
|
public string ProjectType { get; set; }
|
|
public string DrawingType { get; set; }
|
|
public string SheetSize { get; set; }
|
|
public string Scale { get; set; }
|
|
}
|
|
}
|