Files
Antifraude.Net/Antifraude.Net/GestionaDenunciasAN/Models/ReportFieldEntry.cs
2026-04-06 17:12:06 +02:00

10 lines
279 B
C#

namespace GestionaDenunciasAN.Models;
public sealed class ReportFieldEntry
{
public int Order { get; set; }
public string Section { get; set; } = string.Empty;
public string Label { get; set; } = string.Empty;
public string Value { get; set; } = string.Empty;
}