検索
1|using System; 2| 3|namespace net.e_ioo.Common 4|{ 5| public class MessageDlgParam 6| { 7| private string _infoFilePath = null; 8| private MessageDlgShowId _showId = MessageDlgShowId.None; 9| 10| public MessageDlgParam(string infoFilePath) 11| { 12| this._infoFilePath = infoFilePath; 13| } 14| 15| public string InfoFilePath 16| { 17| get{ return this._infoFilePath; } 18| } 19| 20| public MessageDlgShowId ShowId 21| { 22| get{ return this._showId; } 23| set{ this._showId = value; } 24| } 25| } 26|}