Files
2026-05-19 16:45:53 +02:00

16 lines
318 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!;
}