1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Terzaapp
- {
- class Moto
- {
- string marca;
- string modello;
- int cilindrata;
- int veloctità_max;
- public string Marca
- {
- set
- {
- Marca = value;
- }
- get
- {
- return Marca;
- }
- }
- public string Modello
- {
- set
- {
- Modello = value;
- }
- get
- {
- return Modello;
- }
- }
- public int Cilindrata
- {
- set
- {
- Cilindrata = value;
- }
- get
- {
- return Cilindrata;
- }
- }
- public int Velocità_max
- {
- set
- {
- Velocità_max = value;
- }
- get
- {
- return Velocità_max;
- }
- }
- }
- }
|