13 lines
300 B
C#
13 lines
300 B
C#
![]() |
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Net.Project.B.Inventory
|
||
|
{
|
||
|
public class BuyStationComponent
|
||
|
{
|
||
|
public virtual int GroupId { get; set; }
|
||
|
public virtual int ScriptableId { get; set; }
|
||
|
public virtual int Price { get; set; }
|
||
|
}
|
||
|
}
|