首次提交:本地项目同步到Gitea
This commit is contained in:
21
LibShapes/Core/Print/IPrintItemFactory.cs
Normal file
21
LibShapes/Core/Print/IPrintItemFactory.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Io.Github.Kerwinxu.LibShapes.Core.Print
|
||||
{
|
||||
/// <summary>
|
||||
/// 这个是取得PrintItem
|
||||
/// </summary>
|
||||
interface IPrintItemFactory
|
||||
{
|
||||
/// <summary>
|
||||
/// 根据名字取得PrintItem
|
||||
/// </summary>
|
||||
/// <param name="name"></param>
|
||||
/// <returns></returns>
|
||||
PrintItem GetPrintItem(string name);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user