18 lines
403 B
C#
18 lines
403 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankContracts.ViewModels.Reports
|
|
{
|
|
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;
|
|
}
|
|
}
|