25 lines
499 B
C#
25 lines
499 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
using Tanshu.Common;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Helpers
|
|||
|
{
|
|||
|
public class StringType
|
|||
|
{
|
|||
|
string description;
|
|||
|
public StringType(string description)
|
|||
|
{
|
|||
|
this.description = description;
|
|||
|
}
|
|||
|
|
|||
|
public string Description
|
|||
|
{
|
|||
|
get { return description; }
|
|||
|
set { description = value; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|