20 lines
429 B
C#
20 lines
429 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Runtime.Serialization;
|
||
|
||
namespace SOH.Entities.DTO
|
||
{
|
||
/// <summary>
|
||
/// 用户级别,0普通,1VIP,2贵宾
|
||
/// </summary>
|
||
[Serializable()]
|
||
[DataContract(IsReference = true)]
|
||
public class dto_yhjb
|
||
{
|
||
public short yhjb_id { get; set; }
|
||
public string yhjb_text { get; set; }
|
||
}
|
||
}
|