World.cs 286 B

123456789101112131415161718
  1. using System.ComponentModel.DataAnnotations.Schema;
  2. namespace Benchmarks.Model
  3. {
  4. [Table("world")]
  5. public class World
  6. {
  7. [Column("id")]
  8. public int Id { get; set; }
  9. [Column("randomnumber")]
  10. public int RandomNumber { get; set; }
  11. }
  12. }