StubTypeRule.cs 485 B

1234567891011121314151617181920
  1. #pragma warning disable CS1591
  2. #pragma warning disable SA1600
  3. namespace Emby.Naming.Video
  4. {
  5. public class StubTypeRule
  6. {
  7. /// <summary>
  8. /// Gets or sets the token.
  9. /// </summary>
  10. /// <value>The token.</value>
  11. public string Token { get; set; }
  12. /// <summary>
  13. /// Gets or sets the type of the stub.
  14. /// </summary>
  15. /// <value>The type of the stub.</value>
  16. public string StubType { get; set; }
  17. }
  18. }