Ombi/src/Ombi.Settings/Settings/Models/UserManagementSettings.cs
2017-09-15 22:15:45 +01:00

10 lines
No EOL
256 B
C#

using System.Collections.Generic;
namespace Ombi.Settings.Settings.Models
{
public class UserManagementSettings : Settings
{
public bool ImportMediaServerUsers { get; set; }
public List<string> DefaultRoles { get; set; }
}
}