18 lines
430 B
C#
18 lines
430 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using EpsonPrinter.Enums;
|
|
using ESCPOS_NET.Emitters;
|
|
|
|
namespace EpsonPrinter.Model
|
|
{
|
|
public class HeaderModel
|
|
{
|
|
public string Value { get; set; }
|
|
public PrintStyleModel PrintStyles { get; set; }
|
|
public AlignmentEnum TextAlignment { get; set; }
|
|
public int FeedingLines { get; set; }
|
|
}
|
|
}
|