using BBWY.Server.Model; using Microsoft.Extensions.Caching.Memory; using System; using System.Collections.Generic; using System.Text; namespace BBWY.Server.Business { public class TaoBaoBusiness : PlatformSDKBusiness { public override Enums.Platform Platform => Enums.Platform.淘宝; public TaoBaoBusiness(IMemoryCache memoryCache) : base(memoryCache) { } } }