2017-03-04 17:07:26 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace CommonLibrary
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 所有的数据资源中心
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class Resource
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 字符串资源中心
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class StringResouce
|
|
|
|
|
|
{
|
|
|
|
|
|
public static string SoftName { get; } = "你的软件系统";
|
|
|
|
|
|
public static string SoftCopyRight { get; } = "版权归属人";
|
2017-05-04 11:43:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-05-19 10:20:10 +08:00
|
|
|
|
public const string AccountLoadFailed = "新增账户失败";
|
|
|
|
|
|
public const string AccountDeleteSuccess = "账户删除:";
|
|
|
|
|
|
public const string AccountAddSuccess = "账户新增:";
|
|
|
|
|
|
public const string AccountModifyPassword = "账户更改密码:";
|
2017-03-04 17:07:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|