14 lines
275 B
C#
14 lines
275 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CarParkValidationAPI.Entities
|
|
{
|
|
public class FileContent
|
|
{
|
|
public byte[] Content { get; set; }
|
|
public string FileName { get; set; }
|
|
}
|
|
}
|