namespace Avalonia.LinuxFramebuffer
{
///
/// Platform-specific options which apply to the Linux framebuffer.
///
public class LinuxFramebufferPlatformOptions
{
///
/// Gets or sets the number of frames per second at which the renderer should run.
/// Default 60.
///
public int Fps { get; set; } = 60;
}
}