Zum testen: rentcar system

This commit is contained in:
Fabian
2021-05-02 22:53:53 +02:00
parent 60059f45d4
commit 98cd903f4c
13 changed files with 416 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
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;
}
}
}