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; } }