16 lines
495 B
C#
16 lines
495 B
C#
// Models/PrintImageRequest.cs
|
|
namespace FrymasterBadgeApp.Models
|
|
{
|
|
public class PrintImageRequest
|
|
{
|
|
// The fully rendered front of the badge (Photo + Name + Logo)
|
|
public string FrontBase64 { get; set; } = string.Empty;
|
|
|
|
// Any instructions for the back (often a static disclaimer)
|
|
public string BackBase64 { get; set; } = string.Empty;
|
|
|
|
// The IP Address or Name of the printer
|
|
public string Printer { get; set; } = string.Empty;
|
|
}
|
|
}
|