Files
reallife-gamemode/ReallifeGamemode.Server/Util/RentcarProperty.cs
2021-05-02 22:54:04 +02:00

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;
}
}
}