BusinessUnit.cs 332 B

12345678910111213141516
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Dfs.WayneChina.CardTrxManager.TrxSubmitter
  6. {
  7. public class BusinessUnit
  8. {
  9. [JsonProperty("Id")]
  10. public Guid Id { get; set; }
  11. [JsonProperty("Name")]
  12. public string Name { get; set; }
  13. }
  14. }