Files
htolhast/HTOLHAST/PowerSupplySetting.cs
Wesley Hofman 14e8e2f267 Various updates
2025-09-15 20:24:09 +02:00

24 lines
519 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HTOLHAST
{
public class PowerSupplySetting
{
public int Channel { get; set; }
public string Description { get; set; }
public double Voltage { get; set; }
public double Tolerance { get; set; }
public double CurrentLimit { get; set; }
public bool Enabled { get; set; }
public PowerSupplySetting()
{
}
}
}