9 lines
222 B
C#
9 lines
222 B
C#
using System.Threading.Tasks;
|
|
using Kurs.Platform.ListForms.DynamicApi;
|
|
|
|
namespace Kurs.Platform.Tenants;
|
|
|
|
public interface IPlatformTenantAppService
|
|
{
|
|
Task PostSeedTenantDataAsync(CreateUpdateTenantInput input);
|
|
}
|