mirror of
https://github.com/mastercodeon314/KsDumper-11.git
synced 2024-11-28 00:10:52 +01:00
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;
|
|||
|
}
|
|||
|
}
|