mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 17:13:38 +01:00
19 lines
403 B
C#
19 lines
403 B
C#
#nullable enable
|
|
#pragma warning disable CS1591
|
|
#pragma warning disable CA1819
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using MediaBrowser.Model.Dto;
|
|
using MediaBrowser.Model.Updates;
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
{
|
|
|
|
public class PathSubstitution
|
|
{
|
|
public string From { get; set; } = string.Empty;
|
|
|
|
public string To { get; set; } = string.Empty;
|
|
}
|
|
}
|