mirror of
https://github.com/denglihong2007/CRSim
synced 2026-06-17 23:15:54 +08:00
9 lines
222 B
C#
9 lines
222 B
C#
namespace CRSim.Core.Models
|
|
{
|
|
public class TicketCheck
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
public string Name { get; set; }
|
|
public override string ToString() => Name;
|
|
}
|
|
} |