LANCommander/LANCommander.Launcher.Models/ImportItem.cs

15 lines
265 B
C#
Raw Permalink Normal View History

2025-01-12 02:54:41 -06:00
using LANCommander.SDK.Models;
namespace LANCommander.Launcher.Models;
public class ImportItem
{
public Guid Id { get; set; }
public string Name { get; set; }
public ImportItem(Guid id, string name)
{
Id = id;
Name = name;
}
}