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

    /**
     * StoveApp login provider.
     * @since 2.0.0
     */
    public class StoveAppProvider : Provider
    {
        public string ClassName
        {
            get
            {
#if UNITY_ANDROID
            return "com.stove.auth.StoveAppProvider";
#elif UNITY_IOS
            return "SGSStoveAppProvider";
#else
                return "";
#endif
            }
        }

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

        public StoveAppProvider()
        {
            
        }
    }
}
