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

    /**
     * Email Provider by the Stove.
     * @since 2.0.0
     */
    public class EmailProvider : Provider
    {
        public string ClassName
        {
            get
            {
#if UNITY_ANDROID
            return "com.stove.auth.ui.email.EmailProvider";
#elif UNITY_IOS
            return "SGSEmailProvider";
#else
                return "";
#endif
            }
        }

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

