12345678910111213141516171819202122232425262728293031323334353637383940 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// test_comm_set
- /// </summary>
- public partial class test_comm_set
- {
- public test_comm_set()
- {
- this.test_comm_param_set = new HashSet<test_comm_param_set>();
- }
-
- /// <summary>
- /// comm_set_id
- /// </summary>
- public decimal comm_set_id { get; set; }
- /// <summary>
- /// note
- /// </summary>
- public string note { get; set; }
-
- /// <summary>
- /// test_comm_param_set
- /// </summary>
- public virtual HashSet<test_comm_param_set> test_comm_param_set { get; set; }
- }
- }
|