16 lines
495 B
C#
16 lines
495 B
C#
namespace LaaProductionWeb.Services.Models.Search
|
|
{
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
public class SearchWildcardModel
|
|
{
|
|
[Display(Name = "Radioadress | PcbId | SerienNr | KundenSerienNr")]
|
|
public string Token { get; set; }
|
|
|
|
[Display(Name = "Select fields")]
|
|
public IDictionary<string, bool> Fields { get; set; }
|
|
|
|
public IEnumerable<IDictionary<string, object>> Results { get; set; }
|
|
}
|
|
} |