Files
barcodeManager/LibShapes/Core/Paper/IPaperSetting.cs
2026-01-24 08:45:54 +08:00

20 lines
394 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Io.Github.Kerwinxu.LibShapes.Core.Paper
{
/// <summary>
/// 取得纸张设置的接口
/// </summary>
interface IPaperSetting
{
/// <summary>
/// 取得纸张的信息
/// </summary>
/// <returns></returns>
Paper GetPaper();
}
}