mirror of
https://github.com/denglihong2007/CRSim
synced 2026-08-02 23:18:39 +08:00
15 lines
283 B
C#
15 lines
283 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CRSim.Core.Models
|
|
{
|
|
public class Ticket
|
|
{
|
|
public double Price { get; set; } = 0.0;
|
|
public int Quantity { get; set; } = 100;
|
|
}
|
|
}
|