LivePreviewRequest.cs 273 B

12345678910
  1. namespace Vinno.FIS.Sonopost.WebApi.Models
  2. {
  3. internal class LivePreviewRequest
  4. {
  5. public string DeviceId { get; set; }
  6. public int Width { get; set; }
  7. public int Height { get; set; }
  8. public int FrameRate { get; set; } = 15;
  9. }
  10. }