12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
-
- namespace TestUtils.DataAccess.Models
- {
- public partial class fk_pk_guids
- {
-
- public Guid id { get; set; }
-
- public string name { get; set; }
-
- public Guid? pk_guid_id { get; set; }
-
-
- public virtual pk_guid fk_pk_guid { get; set; }
-
-
- }
- }
|