using System.Collections.Generic; namespace Server.Mobiles { public abstract class SBInfo { public static readonly List Empty = new List(); public SBInfo() { } public abstract IShopSellInfo SellInfo { get; } public abstract List BuyInfo { get; } } }