Initial Commit

This commit is contained in:
DavidOnTop 2024-01-20 13:52:41 +01:00
commit d2176afff9
No known key found for this signature in database
GPG key ID: FAB914DDC2F180EB
23 changed files with 778 additions and 0 deletions

View file

@ -0,0 +1,5 @@
namespace CruelMan.Modules.Settings {
public abstract class TextSetting : Setting {
public virtual string value { get; set; } = "";
}
}