Backend/e-suite.API.Common/e-suite.API.Common/models/CustomFieldValue.cs
2026-01-20 21:50:10 +00:00

15 lines
384 B
C#

using System.Text.Json.Serialization;
namespace e_suite.API.Common.models;
public class CustomFieldValue
{
/// <summary>
/// Value can be either a string or a GeneralRefId
/// </summary>
[JsonPropertyName("value")]
public object Value { get; set; } = null!;
[JsonPropertyName("displayValue")]
public string? DisplayValue { get; set; }
}