using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BankYouBankruptContracts.ViewModels { public class FileViewModel { public byte[] Bytes { get; set; } = Array.Empty(); public int[] Test { get; set; } = Array.Empty(); public string StringBytes { get; set; } = string.Empty; } }