mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
9 lines
203 B
C#
9 lines
203 B
C#
using Application.DataTransferObjects.Feedback;
|
|
using Octokit;
|
|
|
|
namespace Application.Interfaces;
|
|
|
|
public interface IGitHubService
|
|
{
|
|
public Task<Issue> CreateIssueAsync(FeedbackDto feedbackDto);
|
|
} |