10 lines
268 B
C#
10 lines
268 B
C#
|
namespace Omegasis.SaveBackup.Framework
|
|||
|
{
|
|||
|
/// <summary>The mod configuration.</summary>
|
|||
|
internal class ModConfig
|
|||
|
{
|
|||
|
/// <summary>The number of save backups to keep for each type.</summary>
|
|||
|
public int SaveCount { get; set; } = 30;
|
|||
|
}
|
|||
|
}
|