步步为盈

15 lines
305 B

using Microsoft.Extensions.Caching.Memory;
using System;
3 years ago
using System.Collections.Generic;
using System.Text;
namespace BBWY.Server.Business
{
public class PDDBusiness : PlatformSDKBusiness
3 years ago
{
public PDDBusiness(IMemoryCache memoryCache) : base(memoryCache)
{
}
3 years ago
}
}