18 lines
422 B
C#
18 lines
422 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class PHOdbiorca
|
|
{
|
|
public decimal PHId { get; set; }
|
|
|
|
public decimal KontrId { get; set; }
|
|
|
|
public virtual Kontrahent Kontr { get; set; } = null!;
|
|
|
|
public virtual PH PH { get; set; } = null!;
|
|
|
|
public virtual ICollection<PHOdbDane> PHOdbDane { get; set; } = new List<PHOdbDane>();
|
|
}
|