19 lines
320 B
C#
19 lines
320 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace dccdc.Models
|
|||
|
|
{
|
|||
|
|
public class DQmodel
|
|||
|
|
{
|
|||
|
|
public string type { get; set; }
|
|||
|
|
|
|||
|
|
public string pid { get; set; }
|
|||
|
|
|
|||
|
|
public string dqid { get; set; }
|
|||
|
|
|
|||
|
|
public string text { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|