renamed projects and namespaces

This commit is contained in:
clodan
2025-03-07 13:16:43 +00:00
parent 87200e46cf
commit 270f095413
1076 changed files with 3381 additions and 3402 deletions
@@ -0,0 +1,28 @@
using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Eft.Profile;
namespace SPTarkov.Server.Core.Models.Eft.Dialog;
public record GetMailDialogViewResponseData
{
[JsonPropertyName("messages")]
public List<Message>? Messages
{
get;
set;
}
[JsonPropertyName("profiles")]
public List<UserDialogInfo>? Profiles
{
get;
set;
}
[JsonPropertyName("hasMessagesWithRewards")]
public bool? HasMessagesWithRewards
{
get;
set;
}
}