Add ItemShop, fix ClotheShop Payment, fix Vehicle Respawn, Add Vehicle Lock from outside
This commit is contained in:
21
ReallifeGamemode.Database/Entities/ShopItem.cs
Normal file
21
ReallifeGamemode.Database/Entities/ShopItem.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Text;
|
||||
|
||||
namespace ReallifeGamemode.Database.Entities
|
||||
{
|
||||
public partial class ShopItem
|
||||
{
|
||||
[Key]
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
public int Id { get; set; }
|
||||
|
||||
public int ShopId { get; set; }
|
||||
|
||||
public int ItemId { get; set; }
|
||||
public int Amount { get; set; }
|
||||
public int Price { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user