17 lines
302 B
C#
17 lines
302 B
C#
using GTANetworkAPI;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ReallifeGamemode.Server.Util
|
|
{
|
|
class TaxiContract
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public Vector3 Position { get; set; }
|
|
|
|
public Client Driver { get; set; }
|
|
}
|
|
}
|