13 lines
305 B
C#
13 lines
305 B
C#
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; }
|
|
}
|
|
}
|