mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
3ca5117875
Co-authored-by: Alexandru Macocian <amacocian@microsoft.com>
17 lines
437 B
C#
17 lines
437 B
C#
using Daybreak.Shared.Attributes;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsName(Name = "Screen Manager")]
|
|
[OptionsIgnore]
|
|
[OptionsSynchronizationIgnore]
|
|
public sealed class ScreenManagerOptions
|
|
{
|
|
public double X { get; set; }
|
|
public double Y { get; set; }
|
|
public double Width { get; set; }
|
|
public double Height { get; set; }
|
|
public int DpiX { get; set; } = 96;
|
|
public int DpiY { get; set; } = 96;
|
|
}
|