mirror of
https://github.com/snltty/linker.git
synced 2025-10-05 09:06:54 +08:00
18 lines
368 B
C#
18 lines
368 B
C#
using linker.messenger.api;
|
|
|
|
namespace linker.messenger.store.file.api
|
|
{
|
|
public sealed class ApiStore : IApiStore
|
|
{
|
|
public ApiClientInfo Info => fileConfig.Data.Client.CApi;
|
|
|
|
private readonly FileConfig fileConfig;
|
|
public ApiStore(FileConfig fileConfig)
|
|
{
|
|
this.fileConfig = fileConfig;
|
|
}
|
|
|
|
|
|
}
|
|
}
|