Files
Antifraude.Net/Antifraude.Net/GestionaDenuncias.Shared/Models/ReportFieldEntry.cs
2026-05-06 13:48:23 +02:00

10 lines
284 B
C#

namespace GestionaDenuncias.Shared.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;
}