Вот код:
namespace Phylor.Application.FrontEnd.Search.Models.Adjudication
{
public class ResultsGridViewModel
{
public List<ResultGridProductModel> NmResult = new List<ResultGridProductModel>();
public List<ResultGridProductModel> WlsResult = new List<ResultGridProductModel>();
public List<ResultGridPepModel> PepResult = new List<ResultGridPepModel>();
public List<ResultGridProductModel> MedResult = new List<ResultGridProductModel>();
}
public class ResultGridProductModel
{
public long ResultId { get; set; }
public string Url { get; set; }
public string ProductId { get; set; }
public string Category { get; set; }
public string Identifier { get; set; }
public string IndividualName { get; set; }
public string EntityName { get; set; }
public string Remarks { get; set; }
public string Text { get; set; }
public string Address { get; set; }
public string DateOfBirth { get; set; }
public string PlaceOfBirth { get; set; }
public string Score { get; set; }
public string Age { get; set; }
public string Gender { get; set; }
public string Race { get; set; }
public string Nationality { get; set; }
public string EyeColor { get; set; }
public string Height { get; set; }
public string Weight { get; set; }
public string HairColor { get; set; }
public string SourceRegion { get; set; }
public string Program { get; set; }
public string AliasList { get; set; }
public string Caution { get; set; }
public string SourceAgencyName { get; set; }
public string SourceAgencyAcronym { get; set; }
public string SourceParentAgency { get; set; }
public string SourceCountry { get; set; }
public string ServiceName { get; set; }
public bool IsMatch { get; set; }
}
Теперь посмотрите на скриншот, чтобы увидеть то, что я вижу в Visual Studio, в частности SourceCountry.
Я никогда раньше не видел эту пунктирную границу, и Google не помогает мне понять, что это такое. Что означает эта граница и почему она предлагает мне переименовать «Осторожно»?