20 lines
325 B
C#
20 lines
325 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ReallifeGamemode.Server.Util
|
|
{
|
|
public class CannabisData
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public float X { get; set; }
|
|
|
|
public float Y { get; set; }
|
|
|
|
public float Z { get; set; }
|
|
|
|
public DateTime Time { get; set; }
|
|
}
|
|
}
|