17 lines
318 B
C#
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;
|
|
|
|
}
|
|
}
|