16 lines
330 B
C#
16 lines
330 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EVE_LevelingSystem
|
|
{
|
|
public class Settings
|
|
{
|
|
public int TimeToWaitBetweenMessages { get; set; }
|
|
public int MinEXP { get; set; }
|
|
public int MaxEXP { get; set; }
|
|
}
|
|
}
|