InkForge/shared/InkForge.Data/Infrastructure/Blob.cs
2024-02-07 22:16:59 +01:00

8 lines
142 B
C#

namespace InkForge.Data;
public class Blob
{
public string Id { get; set; } = default!;
public byte[] Content { get; set; } = default!;
}