14 lines
394 B
C#
14 lines
394 B
C#
namespace Kreta.Core.Configuratiaton.Interface
|
|
{
|
|
public interface IFirebaseConfiguration
|
|
{
|
|
string ApiKey { get; }
|
|
string AuthDomain { get; }
|
|
string DatabaseURL { get; }
|
|
string ProjectId { get; }
|
|
string StorageBucket { get; }
|
|
string MessagingSenderId { get; }
|
|
string AppId { get; }
|
|
string MeasurementId { get; }
|
|
}
|
|
}
|