Add clanker code
This commit is contained in:
12
dealer/Image.cs
Normal file
12
dealer/Image.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user