This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/oop/2018-02-24_sep/2018-02-24_sep/City.cs

21 lines
386 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _2018_02_24_sep
{
class City
{
public string name { get; }
public int zip_code { get; }
public City(string name, int zip_code)
{
this.name = name;
this.zip_code = zip_code;
}
}
}