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.
123456789101112131415 |
- using System;
-
- namespace Luticate2.Auth.Tests.DataAccess.Crud.Models
- {
- public partial class table_simple_1
- {
- public Guid id { get; set; }
- public string name { get; set; }
- public int priority { get; set; }
- public string comment { get; set; }
- public int? optional_int { get; set; }
- public DateTime created_at { get; set; }
- public DateTime? updated_at { get; set; }
- }
- }
|