server-master/srcs/WingsAPI.Game/Buffs/Card.cs
2026-02-10 18:21:30 +01:00

14 lines
No EOL
250 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System.Collections.Generic;
using WingsEmu.DTOs.BCards;
using WingsEmu.DTOs.Buffs;
namespace WingsEmu.Game.Buffs;
public class Card : CardDTO
{
public List<BCardDTO> BCards { get; set; }
}