1+ // ***********************************************************************
2+ // Assembly : OpenAC.Net.EscPos
3+ // Author : Rafael Dias
4+ // Created : 17-03-2022
5+ //
6+ // Last Modified By : Rafael Dias
7+ // Last Modified On : 17-03-2022
8+ // ***********************************************************************
9+ // <copyright file="InformacoesImpressora.cs" company="OpenAC .Net">
10+ // The MIT License (MIT)
11+ // Copyright (c) 2014 - 2021 Projeto OpenAC .Net
12+ //
13+ // Permission is hereby granted, free of charge, to any person obtaining
14+ // a copy of this software and associated documentation files (the "Software"),
15+ // to deal in the Software without restriction, including without limitation
16+ // the rights to use, copy, modify, merge, publish, distribute, sublicense,
17+ // and/or sell copies of the Software, and to permit persons to whom the
18+ // Software is furnished to do so, subject to the following conditions:
19+ // The above copyright notice and this permission notice shall be
20+ // included in all copies or substantial portions of the Software.
21+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22+ // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
24+ // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
25+ // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
26+ // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27+ // DEALINGS IN THE SOFTWARE.
28+ // </copyright>
29+ // <summary></summary>
30+ // ***********************************************************************
31+
32+ namespace OpenAC . Net . EscPos . Commom
33+ {
34+ public class InformacoesImpressora
35+ {
36+ #region Constructors
37+
38+ public InformacoesImpressora ( string fabricante , string modelo , string firmware , bool guilhotina )
39+ {
40+ Fabricante = fabricante ;
41+ Modelo = modelo ;
42+ Firmware = firmware ;
43+ Guilhotina = guilhotina ;
44+ }
45+
46+ #endregion Constructors
47+
48+ #region Properties
49+
50+ public string Fabricante { get ; }
51+
52+ public string Modelo { get ; }
53+
54+ public string Firmware { get ; }
55+
56+ public bool Guilhotina { get ; }
57+
58+ public static InformacoesImpressora Empty = new ( "" , "" , "" , false ) ;
59+
60+ #endregion Properties
61+ }
62+ }
0 commit comments