10 lines
206 B
C#
10 lines
206 B
C#
using Apimanager_backend.Models;
|
|
|
|
namespace Apimanager_backend.Services
|
|
{
|
|
public interface IUserPackageService
|
|
{
|
|
Task<List<UserPackage>> GetUserPackagesByUserIdAsync(int userId);
|
|
}
|
|
}
|