bykovme/nswallet

View on GitHub
src/NSWallet/NSWallet/Interfaces/IShare.cs

Summary

Maintainability
A
35 mins
Test Coverage
using System;
namespace NSWallet.Interfaces
{
    public interface IShare
    {
        void Share(string message);
        void ShareFile(string fileName, string extraText, string mimeType, string popupText, Action action);
    }
}