soundfile.cs
来自「破解的飞信源代码」· CS 代码 · 共 42 行
CS
42 行
namespace Imps.Client.Pc.Options
{
using System;
internal class SoundFile
{
private string _path;
private string _text;
public SoundFile(string text, string path)
{
this._path = path;
this._text = text;
}
public string Path
{
get
{
return this._path;
}
set
{
this._path = value;
}
}
public string Text
{
get
{
return this._text;
}
set
{
this._text = value;
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?