renamed projects and namespaces
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using SPTarkov.Server.Core.Models.Eft.Inventory;
|
||||
|
||||
namespace SPTarkov.Server.Core.Models.Eft.Hideout;
|
||||
|
||||
public record HideoutCustomizationApplyRequestData : InventoryBaseActionRequestData
|
||||
{
|
||||
/// <summary>
|
||||
/// Id of the newly picked item to apply to hideout
|
||||
/// </summary>
|
||||
[JsonPropertyName("offerId")]
|
||||
public string? OfferId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
[JsonPropertyName("timestamp")]
|
||||
public long? Timestamp
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user