InventoryAgent/Inventory.Core/PrinterInfo.cs
2025-10-20 00:03:49 +08:00

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; }
}
}