12 lines
337 B
C#
12 lines
337 B
C#
using Infrastructure.Attribute;
|
|
using RIZO.Model.social;
|
|
using RIZO.Service.Social.IService;
|
|
|
|
namespace RIZO.Service.Social
|
|
{
|
|
[AppService(ServiceType = typeof(ISocialFansInfoService), ServiceLifetime = LifeTime.Transient)]
|
|
public class SocialFansInfoService : BaseService<SocialFansInfo>, ISocialFansInfoService
|
|
{
|
|
}
|
|
}
|