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

📄 otherinfocolumn.cs

📁 汽车销售公司ERP进销存系统 汽车销售公司ERP进销存系统
💻 CS
字号:
using System;

namespace CallCenter.BusinessInterfaces.BaseForms.Models {
	/// <summary>
	/// OtherInfoColumn 的摘要说明。
	/// </summary>
	public class OtherInfoColumn {
		public OtherInfoColumn() {
			//
			// TODO: 在此处添加构造函数逻辑
			//
		}
		private string _seq = "序号";
		private string _content = "内容";

		public string seq {
			get {
				return _seq;
			}
			set {
				_seq = value;
			}
		}
		public string content {
			get {
				return _content;
			}
			set {
				_content = value;
			
			}
	
		}
	}
}

⌨️ 快捷键说明

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