random-file-runner/Models/AppSession.cs

11 lines
178 B
C#
Raw Normal View History

2021-10-24 15:49:48 +00:00
namespace RandomFileRunner
{
public class AppSession
{
public bool AlwaysOnTop { get; set; } = false;
public int NoFrames { get; set; } = 3;
}
}