Add clanker code

This commit is contained in:
2026-02-17 15:33:05 +01:00
parent ced3cbfe6e
commit 9874f78329
24 changed files with 1884 additions and 31 deletions

12
dealer/Image.cs Normal file
View File

@@ -0,0 +1,12 @@
using System;
namespace dealer
{
public class Image
{
public Guid Id { get; set; } = Guid.NewGuid();
public string? Data { get; set; } // Base64 encoded image data or file path
public string? FileName { get; set; }
public string? ContentType { get; set; }
}
}