mirror of
https://github.com/mastercodeon314/KsDumper-11.git
synced 2024-11-24 06:50:10 +01:00
785233a68f
Updated to KDU v1.3.4 Added new Provider Selector Updated DarkControls Many bug fixes
17 lines
325 B
C#
17 lines
325 B
C#
using KsDumper11;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KsDumper11
|
|
{
|
|
public class KduProviderSettings
|
|
{
|
|
public List<KduProvider> Providers { get; set; }
|
|
|
|
public int DefaultProvider { get; set; } = -1;
|
|
}
|
|
}
|