1
0
mirror of https://github.com/bitwarden/server synced 2025-12-18 09:13:19 +00:00

organization signup apis and data model changes

This commit is contained in:
Kyle Spearrin
2017-03-03 00:07:11 -05:00
parent b18b6a44ef
commit 29e3605576
20 changed files with 371 additions and 131 deletions

View File

@@ -0,0 +1,12 @@
using System.Threading.Tasks;
using Bit.Core.Models.Business;
using Bit.Core.Domains;
using System;
namespace Bit.Core.Services
{
public interface IOrganizationService
{
Task<Tuple<Organization, OrganizationUser>> SignUpAsync(OrganizationSignup organizationSignup);
}
}