mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-23 16:55:47 +01:00
11 lines
191 B
C#
11 lines
191 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.Model.Xbmc
|
|
{
|
|
public class Params
|
|
{
|
|
public string[] fields { get; set; }
|
|
}
|
|
}
|