using Core.Abstractions.Models; namespace WeatherForecast.Models.File.Responses { public class FileResponseModel : ResponseModelBase { public string Name { get; set; } public byte[] Bytes { get; set; } public string ContentType { get; set; } } }