LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
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 |