﻿namespace Stove.StoveSDK
{
    using System.Collections.Generic;

    /**
     * Facebook Provider by the Stove.
     * @since 2.0.0
     */
    public class FacebookProvider : Provider
    {
        /**
         * Facebook Provider's domain
         * @since 2.0.0
         */
        public const string Domain = "com.stove.auth.facebook";

        /**
         * Facebook server error.
         * @since 2.0.0
         */
        public const int FacebookServerError = 30401;

        public string ClassName
        {
            get
            {
#if UNITY_ANDROID
            return "com.stove.auth.facebook.FacebookProvider";
#elif UNITY_IOS
            return "SGSFacebookProvider";
#else
                return "";
#endif
            }
        }

        public Dictionary<string, string> User { get; set; }
    }

}
