mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
12 lines
243 B
C#
12 lines
243 B
C#
using System.Diagnostics;
|
|
using System.Drawing;
|
|
|
|
namespace Remotely.Server.Models
|
|
{
|
|
public class RecordingSessionState
|
|
{
|
|
public Bitmap CumulativeFrame { get; set; }
|
|
public Process FfmpegProcess { get; set; }
|
|
}
|
|
}
|