InkForge/shared/InkForge.Data/Infrastructure/Blob.cs

9 lines
142 B
C#
Raw Normal View History

2024-02-07 22:16:59 +01:00
namespace InkForge.Data;
public class Blob
{
public string Id { get; set; } = default!;
public byte[] Content { get; set; } = default!;
}