random-file-runner/Models/AppSession.cs
2021-10-24 16:49:48 +01:00

11 lines
178 B
C#

namespace RandomFileRunner
{
public class AppSession
{
public bool AlwaysOnTop { get; set; } = false;
public int NoFrames { get; set; } = 3;
}
}