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.

FkPkGuidDbo.cs 283B

123456789101112131415
  1. using TestUtils.Dbo.PkGuid;
  2. namespace TestUtils.Dbo.FkPkGuid
  3. {
  4. public class FkPkGuidDbo
  5. {
  6. public string Id { get; set; }
  7. public string Name { get; set; }
  8. public string PkGuidId { get; set; }
  9. public PkGuidDbo PkGuid { get; set; }
  10. }
  11. }