PageRenderTime 41ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/DataLayer/Model/System.cs

#
C# | 17 lines | 14 code | 2 blank | 1 comment | 0 complexity | 9ba2c0bf51ec48588a7b2023f35dfcd4 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace DataLayer.Model
  6. {
  7. internal class System
  8. {
  9. public Guid ID { get; set; }
  10. public int Version { get; set; }
  11. /*PARAMETROS*/
  12. public Guid IDTransferenciaIN { get; set; }
  13. public Guid IDTransferenciaOut { get; set; }
  14. }
  15. }