Files
CSI-Z420-Tablet-Multi-Funct…/Services/BalanceService.cs
GukSang.Jin bf58b3e2bd 更新2026
2026-05-16 17:47:46 +08:00

15 lines
343 B
C#

using System;
using System.Threading.Tasks;
namespace TabletTester2025.Services
{
public class BalanceService
{
public async Task<double> ReadWeightAsync()
{
await Task.Delay(100);
throw new InvalidOperationException("天平真实通讯未接入,禁止返回模拟重量");
}
}
}