13 lines
264 B
C#
13 lines
264 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace excel_pajak.Models;
|
|
|
|
public class EmployeeInfo
|
|
{
|
|
[JsonPropertyName("employee_number")]
|
|
public string? EmployeeNumber { get; set; }
|
|
|
|
[JsonPropertyName("schema")]
|
|
public string? Schema { get; set; }
|
|
}
|