14 lines
389 B
C#
14 lines
389 B
C#
|
|
namespace DoliMiddlewareApi.Dtos.query;
|
||
|
|
|
||
|
|
public class BankLineDto
|
||
|
|
{
|
||
|
|
public int Id { get; set; }
|
||
|
|
public string? Label { get; set; }
|
||
|
|
public double Amount { get; set; }
|
||
|
|
public DateTime? Date { get; set; }
|
||
|
|
public DateTime? DateValue { get; set; }
|
||
|
|
public int AccountId { get; set; }
|
||
|
|
public string? BankStatement { get; set; }
|
||
|
|
public string? Type { get; set; }
|
||
|
|
}
|