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<byte>(); public int[] Test { get; set; } = Array.Empty<int>(); public string StringBytes { get; set; } = string.Empty; } }