11 lines
222 B
C#
11 lines
222 B
C#
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class Zasob
|
|
{
|
|
public short Tabela { get; set; }
|
|
public decimal Id { get; set; }
|
|
public string Typ { get; set; }
|
|
public string Sciezka { get; set; }
|
|
} |