10 lines
284 B
C#
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;
|
|
}
|