aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/HttpServer/GetSwaggerResource.cs
blob: 36a257f632754794fa10aeafe15eb3b120fd7808 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using ServiceStack;

namespace MediaBrowser.Server.Implementations.HttpServer
{
    /// <summary>
    /// Class GetDashboardResource
    /// </summary>
    [Route("/swagger-ui/{ResourceName*}", "GET")]
    public class GetSwaggerResource
    {
        /// <summary>
        /// Gets or sets the name.
        /// </summary>
        /// <value>The name.</value>
        public string ResourceName { get; set; }
    }
}