using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataProviders { public class BucketFile { public string Name { get; private set; } public byte[] Bytes { get; private set; } public string ContentType { get; private set; } public BucketFile(string name, byte[] bytes, string contentType) { Name = name; Bytes = bytes; ContentType = contentType; } } }