2024-05-16 10:37:44 +02:00

16 lines
307 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class Zasob
{
public short Tabela { get; set; }
public decimal Id { get; set; }
public string Typ { get; set; } = null!;
public string Sciezka { get; set; } = null!;
}