DbRelationModel.cs 382 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace GreenTree.Nachtragsmanagement.Web.Models.Test
  6. {
  7. public class DbRelationModel
  8. {
  9. public string UserJson { get; set; }
  10. public string DeviationJson { get; set; }
  11. public string SiteJson { get; set; }
  12. public string AppendixJson { get; set; }
  13. }
  14. }