using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Application.Services;
using Yi.Framework.DigitalCollectibles.Application.Contracts.Dtos.Collectibles;
using Yi.Framework.DigitalCollectibles.Application.Contracts.Dtos.Market;
namespace Yi.Framework.DigitalCollectibles.Application.Services;
///
/// 藏品应用服务
///
public class CollectiblesService:ApplicationService
{
///
/// 获取当前用户的藏品
///
///
///
///
[HttpGet("user")]
[Authorize]
public async Task> GetForAccountUserAsync(CollectiblesUserGetInput input)
{
throw new NotImplementedException();
}
}