2026-05-27 21:33:48 +03:30
|
|
|
namespace Meezi.API.Models.Kitchen;
|
|
|
|
|
|
|
|
|
|
public record KitchenStationDto(
|
|
|
|
|
string Id,
|
|
|
|
|
string? BranchId,
|
|
|
|
|
string Name,
|
|
|
|
|
string? PrinterIp,
|
|
|
|
|
int PrinterPort,
|
|
|
|
|
int SortOrder,
|
2026-06-25 12:28:27 +03:30
|
|
|
int CategoryCount,
|
|
|
|
|
string? PrintDeviceId);
|
2026-05-27 21:33:48 +03:30
|
|
|
|
|
|
|
|
public record CreateKitchenStationRequest(
|
|
|
|
|
string Name,
|
|
|
|
|
string? BranchId,
|
|
|
|
|
string? PrinterIp,
|
|
|
|
|
int PrinterPort = 9100,
|
2026-06-25 12:28:27 +03:30
|
|
|
int SortOrder = 0,
|
|
|
|
|
string? PrintDeviceId = null);
|
2026-05-27 21:33:48 +03:30
|
|
|
|
|
|
|
|
public record UpdateKitchenStationRequest(
|
|
|
|
|
string? Name,
|
|
|
|
|
string? BranchId,
|
|
|
|
|
string? PrinterIp,
|
|
|
|
|
int? PrinterPort,
|
2026-06-25 12:28:27 +03:30
|
|
|
int? SortOrder,
|
|
|
|
|
string? PrintDeviceId);
|