12 lines
268 B
C#
12 lines
268 B
C#
namespace CadParamPluging.Domain.Models
|
|
{
|
|
public class TemplateInfo
|
|
{
|
|
public string Name { get; set; }
|
|
public string FilePath { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
public string LayoutName { get; set; }
|
|
}
|
|
}
|