- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace MS.Entities.AccountingService_Models
- {
- public class CardSummary
- {
- public string belong_to { get; set; }
- public long? amount { get; set; }
- public long? volume { get; set; }
- }
- }
|