Skip to content

Instantly share code, notes, and snippets.

@seba47
Last active May 13, 2017 17:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seba47/9329b187a76123b2f61fe74eaf25e41b to your computer and use it in GitHub Desktop.
Save seba47/9329b187a76123b2f61fe74eaf25e41b to your computer and use it in GitHub Desktop.
descccc
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Realitee.Interfaces
{
public interface IFileStorage
{
Task<byte[]> ReadAsBytes(string filename);
Task<string> ReadAsString(string filename);
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Realitee.Interfaces
{
public interface IFileStorage
{
Task<byte[]> ReadAsBytes(string filename);
Task<string> ReadAsString(string filename);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment