9 lines
183 B
C#
9 lines
183 B
C#
namespace Core.Blueprint.Storage
|
|
{
|
|
public class BlobAddDto
|
|
{
|
|
public string? FileName { get; set; }
|
|
public byte[] FileContent { get; set; } = null!;
|
|
}
|
|
}
|