Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wisp
GitHub Repository: wisp/impinj-reader-app
Path: blob/master/ReaderLibrary/ITagHandler.cs
180 views
using System;
using System.Collections.Generic;
using System.Text;

namespace ReaderLibrary
{
    public interface ITagHandler
    {
        void HandleTagReceived(MyTag tag);
    }
}