21 lines
417 B
C#
21 lines
417 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using MapTo;
|
|
|
|
namespace BlueWest.Data
|
|
{
|
|
[MapFrom(typeof(FinanceOp))]
|
|
|
|
public partial class FinanceTransactionReadDto
|
|
{
|
|
public TimeSpan UserId { get; set; }
|
|
|
|
public Currency Currency { get; }
|
|
|
|
public FinanceOpType FinanceOpType {get;}
|
|
public TimeSpan CreationDate { get; set; }
|
|
|
|
}
|
|
}
|