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.

table_simple_1.cs 438B

123456789101112131415
  1. using System;
  2. namespace Luticate2.Auth.Tests.DataAccess.Crud.Models
  3. {
  4. public partial class table_simple_1
  5. {
  6. public Guid id { get; set; }
  7. public string name { get; set; }
  8. public int priority { get; set; }
  9. public string comment { get; set; }
  10. public int? optional_int { get; set; }
  11. public DateTime created_at { get; set; }
  12. public DateTime? updated_at { get; set; }
  13. }
  14. }