- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.CardTrxManager.TrxSubmitter
- {
- public class BusinessUnit
- {
- [JsonProperty("Id")]
- public Guid Id { get; set; }
- [JsonProperty("Name")]
- public string Name { get; set; }
- }
- }
|