using XFEExtension.NetCore.AutoConfig; using XFEExtension.NetCore.ServerInteractive.Models; namespace XFEExtension.NetCore.ServerInteractive.Profiles; public partial class ServerBaseProfile : XFEProfile { /// /// 服务器入口点 /// [ProfileProperty] private string _entryPoint = "api"; /// /// 封禁的IP地址列表 /// [ProfileProperty] [ProfilePropertyAddGet("Current._bannedIPAddressList.CurrentProfile = Current")] [ProfilePropertyAddGet("return Current._bannedIPAddressList")] private ProfileList _bannedIPAddressList = []; }