📄 expenseaccountinfo.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace MyApplication
{
[Serializable]
public class ExpenseAccountInfo
{
private Guid appguid;
private string username;
private double amount;
private string appdate;
private string expstatus;
private string notes;
public Guid ExpID
{
get{return appguid;}
set{appguid = value;}
}
public string UserName
{
get{ return username; }
set{ username = value;}
}
public double Amount
{
get { return amount; }
set { amount = value; }
}
public string AppDate
{
get { return appdate; }
set { appdate = value; }
}
public string ExpStatus
{
get { return expstatus; }
set { expstatus = value; }
}
public string Notes
{
get { return notes; }
set { notes = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -