| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.ComponentModel.DataAnnotations.Schema; |
| | | 4 | | using System.Text; |
| | | 5 | | |
| | | 6 | | namespace WinSolutions.Sveta.Server.Data.DataModel.Entities |
| | | 7 | | { |
| | | 8 | | public class WalletTransaction: ExternalRecord, ITrackableRecord |
| | | 9 | | { |
| | 0 | 10 | | public Movement Movement { get; set; } |
| | 0 | 11 | | public string TransactionId { get; set; } |
| | 0 | 12 | | public string SmsId { get; set; } |
| | | 13 | | [Column(TypeName = "decimal(18,2)")] |
| | 0 | 14 | | public decimal Sum { get; set; } |
| | 0 | 15 | | public WalletTransactionStatus Status { get; set; } |
| | | 16 | | } |
| | | 17 | | } |