CollectionCreationResult.cs 183 B

1234567891011
  1. #pragma warning disable CS1591
  2. using System;
  3. namespace MediaBrowser.Model.Collections
  4. {
  5. public class CollectionCreationResult
  6. {
  7. public Guid Id { get; set; }
  8. }
  9. }