Files
xxcpzs/XXCpzs/ViewModels/AddCustomerModel.cs
2020-04-03 11:55:02 +08:00

16 lines
262 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace XXCpzs.ViewModels
{
class AddCustomerModel : BaseViewModel
{
public AddCustomerModel(int Uid)
{
Title = "添加新的客户";
}
}
}