25 lines
457 B
C#
25 lines
457 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FakturyWeb.Models
|
|
{
|
|
public class FakturaSeznam
|
|
{
|
|
public int ID { get; set; }
|
|
|
|
public string CISLO { get; set; }
|
|
|
|
public DateTime VYSTAVENI { get; set; }
|
|
|
|
public DateTime SPLATNOST { get; set; }
|
|
|
|
public string O_PRAJM { get; set; }
|
|
|
|
public decimal CASTKA { get; set; }
|
|
|
|
public decimal ZAPLACENO { get; set; }
|
|
}
|
|
}
|