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

using ReaderLibrary;

namespace Logging
{
    public interface ILogger
    {
        string BuildStringToLog(MyTag t);
        void SetupAvailableOptions();
    }
}