using PkmnLib.Dynamic.Models; namespace PkmnLib.Dynamic.Events; public class FaintEvent : IEventData { public FaintEvent(IPokemon pokemon) { Pokemon = pokemon; } public IPokemon Pokemon { get; init; } /// public EventBatchId BatchId { get; init; } = new(); }