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_4/Owner.cs

16 lines
262 B
C#
Raw Permalink Normal View History

2023-03-20 00:14:49 +00:00
namespace OwnerClass;
class Owner
{
public int Id { get;}
public string Name { get;}
public string Address { get;}
public Owner(int id, string name, string address)
{
Id = id;
Name = name;
Address = address;
}
}