- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
-
- namespace WebApplication3.Clases
- {
- public class Fichero
- {
- public string Nombre { get; set; }
- public string Base64 { get; set; }
- public byte[] Test { get; set; }
- }
- }
|