using System.Text.Json.Serialization;
namespace Prospect.Server.Api.Models.Client;
public class FUpdateUserTitleDisplayNameRequest
{
///
/// [optional] The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).
///
[JsonPropertyName("CustomTags")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public Dictionary CustomTags { get; set; }
///
/// New title display name for the user - must be between 3 and 25 characters.
///
[JsonPropertyName("DisplayName")]
public string DisplayName { get; set; }
}