11 lines
182 B
C#
11 lines
182 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace LANCommander.SDK.Models
|
|||
|
|
{
|
|||
|
|
public class Platform : KeyedModel
|
|||
|
|
{
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|