using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello World");
var a = new List<string> { "a", "aa" };
var b = new List<string> { "b", "bb" };
var bb = new List<string> { "bb", "bbb" };
Console.WriteLine("b.Contains(\"b\"): " + b.Contains("b"));
var things = new List<TprAdjusterModel> { new TprAdjusterModel
var dupe = new TprAdjusterModel
Console.WriteLine("things.Contains(dupe): " + things.Contains(dupe));
public class TprAdjusterModel
public decimal? AfterValue { get; set; }
public decimal? BeforeValue { get; set; }
public bool IsPostCap { get; set; }
public string Label { get; set; }
public int? PriceDetailTypeId { get; set; }
public int? AdjusterId { get; set; }
public string IsBuyerOrSeller { get; set; }
public string LookupKey { get; set; }