Unofficial CardLife revival project, pronounced like "celery"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
219B

  1. using System;
  2. namespace CLre_server.Tweaks.Chat
  3. {
  4. [Serializable]
  5. public struct ChatConfig
  6. {
  7. public bool commands_enabled;
  8. public string email_address;
  9. public string password;
  10. }
  11. }