liberty-prettydiff
Version:
Language aware code comparison tool for several web based languages. It also beautifies, minifies, and a few other things.
45 lines (44 loc) • 1.57 kB
Plain Text
public class TestTable
{
public int ID { get; set; }
public bool Bit1 {get; set;}
public bool Bit2 { get; set; }
public bool Bit3 { get; set; }
public bool Bit4 { get; set; }
public bool Bit5 { get; set; }
public bool? Bit6 { get; set; }
public bool? Bit7 { get; set; }
public bool? Bit8 { get; set; }
public bool? Bit9 { get; set; }
public bool? Bit10 { get; set; }
public double Float1 { get; set; }
public double Float2 { get; set; }
public double Float3 { get; set; }
public double Float4 { get; set; }
public double Float5 { get; set; }
public double? Float6 { get; set; }
public double? Float7 { get; set; }
public double? Float8 { get; set; }
public double? Float9 { get; set; }
public double? Float10 { get; set; }
public int Int1 { get; set; }
public int Int2 { get; set; }
public int Int3 { get; set; }
public int Int4 { get; set; }
public int Int5 { get; set; }
public int? Int6 { get; set; }
public int? Int7 { get; set; }
public int? Int8 { get; set; }
public int? Int9 { get; set; }
public int? Int10 { get; set; }
public string VarChar1 { get; set; }
public string VarChar2 { get; set; }
public string VarChar3 { get; set; }
public string VarChar4 { get; set; }
public string VarChar5 { get; set; }
public string VarChar6 { get; set; }
public string VarChar7 { get; set; }
public string VarChar8 { get; set; }
public string VarChar9 { get; set; }
public string VarChar10 { get; set; }
}