9 lines
142 B
C#
9 lines
142 B
C#
|
|
namespace InkForge.Data;
|
||
|
|
|
||
|
|
public class Blob
|
||
|
|
{
|
||
|
|
public string Id { get; set; } = default!;
|
||
|
|
|
||
|
|
public byte[] Content { get; set; } = default!;
|
||
|
|
}
|