mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
10 lines
No EOL
256 B
C#
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; }
|
|
}
|
|
} |