Files
OnDoc/BarcodeLib/Barcoded/LinearModule.cs
2024-07-18 14:22:38 +02:00

25 lines
575 B
C#

namespace Barcoded
{
/// <summary>
/// The bar or space of element that makes up a symbol pattern.
/// </summary>
public class LinearModule
{
/// <summary>
/// Module type (bar or space).
/// </summary>
public ModuleType ModuleType { get; set; }
/// <summary>
/// Module point width.
/// </summary>
public int Width { get; set; }
internal LinearModule(ModuleType moduleType, int width)
{
ModuleType = moduleType;
Width = width;
}
}
}