mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-01 18:42:51 +08:00
19 lines
367 B
C#
19 lines
367 B
C#
using NetAdmin.Domain.Contexts;
|
|
|
|
namespace NetAdmin.Application.Services;
|
|
|
|
/// <summary>
|
|
/// 服务接口
|
|
/// </summary>
|
|
public interface IService
|
|
{
|
|
/// <summary>
|
|
/// 服务编号
|
|
/// </summary>
|
|
Guid ServiceId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 上下文用户令牌
|
|
/// </summary>
|
|
ContextUserToken UserToken { get; set; }
|
|
} |