20 lines
407 B
C#
20 lines
407 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class HarmRapZlecenie
|
|
{
|
|
public decimal HRId { get; set; }
|
|
|
|
public DateTime DataCzas { get; set; }
|
|
|
|
public short Status { get; set; }
|
|
|
|
public string? Komentarz { get; set; }
|
|
|
|
public DateTime Zmiana { get; set; }
|
|
|
|
public virtual HarmRap HR { get; set; } = null!;
|
|
}
|