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_cargo/2018-02-24_cargo/Customer.cs

15 lines
271 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _2018_02_24_cargo
{
class Customer
{
public string first_name { get; set; }
public string name { get; set; }
}
}