You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pk_bigserial.cs 536B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace Test.Utils.DataAccess.Models
  6. {
  7. public partial class pk_bigserial
  8. {
  9. public long id { get; set; }
  10. public string some_text { get; set; }
  11. public int? some_int { get; set; }
  12. public DateTime created_at { get; set; }
  13. public DateTime? updated_at { get; set; }
  14. }
  15. }