db_AI-4/csharp/marketconnectionNET/marketconnectionNET/cities.cs

27 lines
475 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace marketconnectionNET
{
public class cities
{
public int city_id { get; set; }
public string city_name { get; set; }
public int zip_code { get; set; }
public string FullInfo
{
get
{
return $"{ city_name } { zip_code } ";
}
}
}
}