Files
SPT-Server-Build/Libraries/Core/Models/Eft/Quests/CompleteQuestRequestData.cs
T
TetrisGG 28a434a622 Update Models Comments
Changed Comments to adhere to xml standard in all Models.
Added missing comments.
2025-03-04 22:38:11 +01:00

25 lines
450 B
C#

using System.Text.Json.Serialization;
using Core.Models.Eft.Inventory;
namespace Core.Models.Eft.Quests;
public record CompleteQuestRequestData : InventoryBaseActionRequestData
{
/// <summary>
/// Quest Id
/// </summary>
[JsonPropertyName("qid")]
public string? QuestId
{
get;
set;
}
[JsonPropertyName("removeExcessItems")]
public bool? RemoveExcessItems
{
get;
set;
}
}