Merge branch 'master' into v3.1
大石头 authored at 2024-07-13 19:03:18
264.00 B
Stardust
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Stardust.Managers;

/// <summary>服务事件参数</summary>
public class ServiceEventArgs : EventArgs
{
    public IServiceController? Controller { get; set; }
}