Files
CRSim/CRSim.Core/Models/Simulator/Platform.cs
2025-07-12 09:04:53 +08:00

15 lines
271 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CRSim.Core.Models
{
public class Platform
{
public string Name { get; set; }
public int Length { get; set; }
}
}