mirror of
https://github.com/snltty/linker.git
synced 2025-11-02 05:24:21 +08:00
23 lines
592 B
C#
23 lines
592 B
C#
using common.libs;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace cmonitor.client.reports.notify
|
|
{
|
|
public sealed class NotifyWindows : INotify
|
|
{
|
|
public void Update(NotifyInfo notify)
|
|
{
|
|
Task.Run(() =>
|
|
{
|
|
CommandHelper.Windows(string.Empty, new string[] {
|
|
$"start cmonitor.notify.win.exe {notify.Speed} \"{notify.Msg}\" {notify.Star1} {notify.Star2} {notify.Star3}"
|
|
});
|
|
});
|
|
}
|
|
}
|
|
}
|