/Atlassian.Jira/IFileSystem.cs

https://bitbucket.org/yyo/atlassian.net-sdk-v2.0 · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · 5141783d3d6b9562c6883aef60cae113 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Atlassian.Jira
  6. {
  7. public interface IFileSystem
  8. {
  9. byte[] FileReadAllBytes(string path);
  10. }
  11. }