📄 choiceinfo.cs
字号:
using System;
using System.Collections;
using System.Data;
using ASPNET.StarterKit.Communities;
namespace ASPNET.StarterKit.Communities {
/// <summary>
/// Represents data relevant to a VotingPollChoice record.
/// </summary>
public class ChoiceInfo {
public ChoiceInfo(string Choice, int SortOrder, int PollChoice_ID) {
this.Choice=Choice;
this.SortOrder=SortOrder;
this.PollChoice_ID=PollChoice_ID;
}
public string Choice;
public int SortOrder;
public int PollChoice_ID;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -