15 lines
504 B
C#
15 lines
504 B
C#
using System.Collections.Generic;
|
|
|
|
namespace HikvisionAttendanceService;
|
|
|
|
internal sealed class AllUsersTemplateExportPayload
|
|
{
|
|
public string exportedAtUtc { get; set; } = "";
|
|
public string deviceId { get; set; } = "";
|
|
public string userListSource { get; set; } = "";
|
|
public string userListCardKey { get; set; } = "employeeNo";
|
|
public string listFetchError { get; set; } = "";
|
|
public List<UserTemplateExportPayload> users { get; set; } = new List<UserTemplateExportPayload>();
|
|
}
|
|
|