VideoView.cs 224 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GenericDisplayCommand.Controls.V1
  5. {
  6. [Serializable]
  7. public class VideoView : View
  8. {
  9. public string Src { get; set; }
  10. }
  11. }