DCS/ruiyiweiUX/Assets/Scripts/ViewModels/AlarmRecordViewModel.cs

19 lines
437 B
C#
Raw Normal View History

2026-06-09 13:59:11 +08:00
// using System.Collections.Generic;
// public class AlarmRecordViewModel
// {
// public IReadOnlyList<AlarmEvent> GetRecords(int max)
// {
// // 优先使用DCSAlarmManager获取报警记录
// if (DCSAlarmManager.Instance != null)
// {
// return DCSAlarmManager.Instance.GetAlarmRecords(max);
// }
// // 回退到传统的AlarmService如果存在
// return new List<AlarmEvent>().AsReadOnly();
// }
// }