mirror of
https://github.com/denglihong2007/CRSim
synced 2026-06-17 23:15:54 +08:00
15 lines
271 B
C#
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; }
|
|
}
|
|
}
|