16 lines
307 B
C#
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!;
|
|
}
|