TISP_ContentGroupItem.cs 552 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. #nullable disable
  5. namespace Ropin.Inspection.Model.Entities
  6. {
  7. public partial class TISP_ContentGroupItem
  8. {
  9. [Key]
  10. public Guid G_ID { get; set; } = Guid.NewGuid();
  11. public Guid G_ContentGroupCode { get; set; }
  12. public Guid G_ContentCode { get; set; }
  13. public virtual TISP_Content G_ContentCodeNavigation { get; set; }
  14. public virtual TISP_ContentGroup G_ContentGroupCodeNavigation { get; set; }
  15. }
  16. }