Custom print dialog.

This commit is contained in:
Burak Kaan Köse
2025-10-20 21:10:29 +02:00
parent baf4141773
commit 4191b7314f
13 changed files with 1432 additions and 0 deletions
@@ -0,0 +1,17 @@
namespace Wino.Core.Domain.Enums;
/// <summary>
/// Print orientation options.
/// </summary>
public enum PrintOrientation
{
/// <summary>
/// Portrait orientation (default).
/// </summary>
Portrait = 0,
/// <summary>
/// Landscape orientation.
/// </summary>
Landscape = 1
}