using System;
using Unity.Services.Core.Editor;
namespace Unity.Services.Authentication.Editor
{
///
/// Implementation of the for the Authentication package
///
/// This identifier MUST be public struct.
public struct AuthenticationIdentifier : IEditorGameServiceIdentifier
{
///
/// Key for the Authentication package
///
public string GetKey() => "Authentication";
}
}