15 lines
295 B
C#
15 lines
295 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace CommonLib
|
|
{
|
|
public class FieldModel
|
|
{
|
|
public FieldType DataType { get; set; }
|
|
public string FiledName { get; set; }
|
|
public string FiledValue { get; set; }
|
|
}
|
|
}
|