mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-03-04 10:49:25 +00:00
12 lines
273 B
C#
12 lines
273 B
C#
using Teamified.Api.Teams.Models;
|
|
|
|
namespace Teamified.Api.Teams.Interfaces
|
|
{
|
|
public interface ITeamsService
|
|
{
|
|
Task<IEnumerable<Team>> ListTeams();
|
|
Task<Team> GetTeamByGroupId(Guid groupId);
|
|
Task<string> ProvisionTeam(Team team);
|
|
}
|
|
}
|