12 lines
230 B
C#
12 lines
230 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace TestingRoom_NN_Kajk_UI.Models
|
|
{
|
|
public class VariablePostModel
|
|
{
|
|
public string data { get; set; }
|
|
|
|
[JsonPropertyName("default")]
|
|
public bool Isdefault { get; set; }
|
|
}
|
|
}
|