You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
575 B
25 lines
575 B
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;
|
|
}
|
|
}
|
|
}
|