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

16 lines
314 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CRSim.Core.Models
{
public class Section
{
public string From { get; set; }
public string To { get; set; }
public Tickets Tickets { get; set; }
}
}