LANCommander/LANCommander.SDK/Models/Platform.cs

11 lines
182 B
C#
Raw Permalink Normal View History

2024-07-12 18:34:16 -05:00
using System;
using System.Collections.Generic;
namespace LANCommander.SDK.Models
{
public class Platform : KeyedModel
{
public string Name { get; set; }
}
}