﻿using System.Collections.Generic;

namespace Stove.StoveSDK
{
    /**
     * Other Platform Login Interface.
     * @since 2.0.0
     */
    public interface Provider
    {
        string ClassName { get; }

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

