using Attribute;
using Model;
using Model.Base;
using Repository;
using Service;
using Microsoft.AspNetCore.Mvc;
namespace Services
{
///
/// APP页面模板默认样式Service业务层处理
///
[AppService(ServiceType = typeof(IAppProjectPageStyleService), ServiceLifetime = LifeTime.Transient)]
public class AppProjectPageStyleService : BaseService, IAppProjectPageStyleService
{
}
}