using NetAdmin.Domain.Contexts; namespace NetAdmin.Application.Services; /// /// 服务接口 /// public interface IService { /// /// 服务编号 /// Guid ServiceId { get; init; } /// /// 上下文用户令牌 /// ContextUserToken UserToken { get; set; } }