// Author: Gockner, Simon // Created: 2020-02-10 // Copyright(c) 2020 SimonG. All Rights Reserved. using System; using GBase.Api.Services; namespace GBase.Client.Interfaces { /// /// A client for the GBase /// public interface IGBaseClient : IAsyncDisposable { /// /// Functions of the GBase /// IGBaseService GBase { get; } /// /// Functions of the GBaseTable /// IGBaseTableService GBaseTable { get; } /// /// Functions of the GBaseEntry /// IGBaseEntryService GBaseEntry { get; } } }