⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 seat.cs

📁 影院售票管理系统 (1)具有方便、快速的售票功能
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;

namespace dianyingyuan
{
    /// <summary>
    /// 座位信息
    /// </summary>
    [Serializable]
    class Seat
    {
        //座位号 属性
        private string seatNum;

        public string SeatNum
        {
            get { return seatNum; }
            set { seatNum = value; }
        }
        //座位号颜色
        private Color color;

        public Color Color
        {
            get { return color; }
            set { color = value; }
        }

        public Seat(string name,Color color) 
        {
            this.SeatNum = name;
            this.Color = color;
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -