using System; namespace Sleis.Models { public interface IReportAttachmentDetail { ReportAttachmentComponent Attachment { get; set; } byte[] Content { get; set; } } }