This repository has been archived on 2024-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
bookmark-manager-r4/DTOs/SaveFile/AppOptionsBase.cs
2026-05-22 01:16:08 +01:00

17 lines
318 B
C#

using System.Drawing;
namespace BukkuBuddy.DTOs.SaveFile
{
public class AppOptionsBase
{
public int FileVersion { get; set; } = 0;
public Point StartPosition { get; set; } = Point.Empty;
public int Width { get; set; } = 0;
public int Height { get; set; } = 320;
}
}