19 lines
455 B
C#
19 lines
455 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class Sz_town
|
|
{
|
|
public string townCode { get; set; }
|
|
public string townName { get; set; }
|
|
public string countyCode { get; set; }
|
|
public string newCode { get; set; }
|
|
public string newName { get; set; }
|
|
public string x { get; set; }
|
|
public string y { get; set; }
|
|
}
|
|
}
|