Files
point_of_sale_v2/PointOfSale/Pos.Models/Json/PrintStylesModel.cs
2026-07-30 10:11:54 +02:00

18 lines
405 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pos.Json
{
public class PrintStylesModel
{
public bool fontB { get; set; }
public bool bold { get; set; }
public bool doubleHeight { get; set; }
public bool doubleWidth { get; set; }
public bool underline { get; set; }
}
}