using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ET { public class AccountInfoComponentDestroySystem : DestroySystem { public override void Destroy(AccountInfoComponent self) { self.Token = string.Empty; self.AccountId = 0; } } }