LANCommander/LANCommander.Server/Models/ImportDialogOptions.cs

9 lines
195 B
C#
Raw Normal View History

2026-05-24 18:51:58 -05:00
using LANCommander.SDK.Enums;
2025-04-11 02:31:29 -05:00
namespace LANCommander.Server.Models;
public class ImportDialogOptions
{
public string Hint { get; set; }
2026-05-24 18:51:58 -05:00
public ManifestType? ManifestType { get; set; }
2025-04-11 02:31:29 -05:00
}