LCOV - code coverage report
Current view: top level - Cqrs.WebApi/Formatters/FormMultipart/Infrastructure - HttpFile.cs Hit Total Coverage
Test: doc-coverage.info Lines: 0 3 0.0 %
Date: 2017-07-26

          Line data    Source code
       1             : namespace Cqrs.WebApi.Formatters.FormMultipart.Infrastructure
       2             : {
       3             :         public class HttpFile
       4           0 :         {
       5             :                 public string FileName { get; set; }
       6             : 
       7             :                 public string MediaType { get; set; }
       8             : 
       9             :                 public byte[] Buffer { get; set; }
      10             : 
      11           0 :                 public HttpFile() { }
      12             : 
      13           0 :                 public HttpFile(string fileName, string mediaType, byte[] buffer)
      14             :                 {
      15             :                         FileName = fileName;
      16             :                         MediaType = mediaType;
      17             :                         Buffer = buffer;
      18             :                 }
      19             :         }
      20             : }

Generated by: LCOV version 1.10