This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2023_Stanislav_Mykhailenko/Lesson_2/Task_3/Customer.cs

15 lines
274 B
C#
Raw Permalink Normal View History

2023-03-20 00:14:49 +00:00
namespace CustomerClass;
class Customer
{
public string Name { get;}
public int Age { get;}
public string Address { get;}
public Customer(string name, int age, string address)
{
Name = name;
Age = age;
Address = address;
}
}