14 lines
No EOL
250 B
C#
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; }
|
|
} |