namespace ZGame { public class DeleteModelEventArgs : GameEventArgs { public static readonly int EventId = typeof(DeleteModelEventArgs).GetHashCode(); public override int Id => EventId; public string modelName { get; } public DeleteModelEventArgs(string modelName) { this.modelName = modelName; } } }