12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- #nullable disable
- namespace Ropin.Inspection.Model.Entities
- {
- public partial class TISP_ContentGroupItem
- {
- [Key]
- public Guid G_ID { get; set; } = Guid.NewGuid();
- public Guid G_ContentGroupCode { get; set; }
- public Guid G_ContentCode { get; set; }
- public virtual TISP_Content G_ContentCodeNavigation { get; set; }
- public virtual TISP_ContentGroup G_ContentGroupCodeNavigation { get; set; }
- }
- }
|