mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
13 lines
226 B
C#
13 lines
226 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using QRBee.Core;
|
|
using QRBee.Core.Data;
|
|
|
|
namespace QRBee.Api.Services
|
|
{
|
|
public interface IQRBeeAPI
|
|
{
|
|
Task<RegistrationResponse> Register(RegistrationRequest value);
|
|
|
|
}
|
|
}
|