Dekrety #1
This commit is contained in:
23
Blink.Backoffice.Services.PcmDb/Entities/DokKurs.cs
Normal file
23
Blink.Backoffice.Services.PcmDb/Entities/DokKurs.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class DokKurs
|
||||
{
|
||||
public decimal DokId { get; set; }
|
||||
|
||||
public short Znaczenie { get; set; }
|
||||
|
||||
public decimal WalId { get; set; }
|
||||
|
||||
public decimal? Kurs { get; set; }
|
||||
|
||||
public DateTime? Data { get; set; }
|
||||
|
||||
public string? NrTabeli { get; set; }
|
||||
|
||||
public virtual Dok Dok { get; set; } = null!;
|
||||
|
||||
public virtual Waluta Wal { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user