21 lines
433 B
C#
21 lines
433 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ProjectGarage.Entities;
|
|||
|
|
|||
|
public class TempFuelReplenishment
|
|||
|
{
|
|||
|
public int Id { get; private set; }
|
|||
|
|
|||
|
public int DriverId { get; private set; }
|
|||
|
|
|||
|
public DateTime ReplenishmentDate { get; private set; }
|
|||
|
|
|||
|
public int FuelId { get; private set; }
|
|||
|
|
|||
|
public int Amount { get; private set; }
|
|||
|
}
|