LANCommander/LANCommander.Server/Models/AddOptionDialogOptions.cs
Pat Hartl 15bc84016a Add UI for editing option schema
- Moves Redistributables for games to separate panel
- Add option override for games
- Add Monaco completions for option schema editing
- Add UI for editing options for a redistributable
- Add config importing to translate from INI, JSON, XML, etc to redist option schema
2026-05-16 19:28:04 -05:00

7 lines
152 B
C#

namespace LANCommander.Server.Models
{
public class AddOptionDialogOptions
{
public string OptionType { get; set; } = "string";
}
}