Zum testen: rentcar system
This commit is contained in:
18
ReallifeGamemode.Server/Util/RentcarProperty.cs
Normal file
18
ReallifeGamemode.Server/Util/RentcarProperty.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user