NotificationResult.cs 207 B

123456789
  1. 
  2. namespace MediaBrowser.Model.Notifications
  3. {
  4. public class NotificationResult
  5. {
  6. public Notification[] Notifications { get; set; }
  7. public int TotalRecordCount { get; set; }
  8. }
  9. }