MetadocumentTag.cs 361 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace BO.AppServer.Data.Entity
  5. {
  6. public partial class MetadocumentTag
  7. {
  8. public long MetadocumentId { get; set; }
  9. public long TagId { get; set; }
  10. public virtual Metadocument Metadocument { get; set; }
  11. public virtual Tag Tag { get; set; }
  12. }
  13. }