19 lines
329 B
C#
19 lines
329 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ReallifeGamemode.Server.Util
|
|
{
|
|
class RentcarProperty
|
|
{
|
|
public string Name { get; set; }
|
|
public int Price { get; set; }
|
|
|
|
public RentcarProperty(String n, int p){
|
|
Name = n;
|
|
Price = p;
|
|
}
|
|
}
|
|
}
|