13 lines
360 B
C#
13 lines
360 B
C#
namespace CadParamPluging.Data
|
|
{
|
|
public class TemplateDefinition
|
|
{
|
|
public string ProjectType { get; set; }
|
|
public string DrawingType { get; set; }
|
|
public string SheetSize { get; set; }
|
|
public string Scale { get; set; }
|
|
public string FilePath { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
}
|