13 lines
471 B
C#
13 lines
471 B
C#
namespace ShortcutsHelper.Models
|
|
{
|
|
public class ApplicationSettings
|
|
{
|
|
public double Left { get; set; } = 100;
|
|
public double Top { get; set; } = 100;
|
|
public double Width { get; set; } = 600;
|
|
public double Height { get; set; } = 400;
|
|
public double FavoriteColumnWidth { get; set; } = 40;
|
|
public double ShortcutColumnWidth { get; set; } = 150;
|
|
public double DescriptionColumnWidth { get; set; } = 350;
|
|
}
|
|
} |