InventoryAgent/Inventory.Core/PrinterInfo.cs

12 lines
362 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; }
}
}