18 lines
384 B
C#
18 lines
384 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class Sz_county
|
|
{
|
|
|
|
public string countyCode { get; set; }
|
|
public string countyName { get; set; }
|
|
public string cityCode { get; set; }
|
|
public string newCode { get; set; }
|
|
public string newName { get; set; }
|
|
}
|
|
}
|