13 lines
412 B
C#
13 lines
412 B
C#
namespace Inventory.Core
|
|
{
|
|
public class PrinterInfo
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? DriverName { get; set; }
|
|
public bool IsShared { get; set; }
|
|
public bool IsNetwork { get; set; }
|
|
public string? HostName { get; set; } // Print server name
|
|
public string? PortName { get; set; }
|
|
public string? SerialNumber { get; set; }
|
|
}
|
|
} |