BattleDotNet.Objects.WoW.Auctions.Auctions C# (CSharp) 메소드

Auctions() 개인적인 메소드

private Auctions ( IEnumerable alliance, IEnumerable horde, IEnumerable neutral ) : System
alliance IEnumerable
horde IEnumerable
neutral IEnumerable
리턴 System
        internal Auctions(IEnumerable<Auction> alliance, IEnumerable<Auction> horde, IEnumerable<Auction> neutral)
        {
            Alliance = alliance;
            Horde = horde;
            Neutral = neutral;
        }
Auctions