19 lines
469 B
C#
19 lines
469 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ProjectTourAgency.Enities;
|
|||
|
|
|||
|
public class TempClientTour
|
|||
|
{
|
|||
|
public int Id { get; private set; }
|
|||
|
public int ClientId { get; private set; }
|
|||
|
public int TourId { get; private set; }
|
|||
|
public int EmployeeId { get; private set; }
|
|||
|
|
|||
|
public DateTime DepartureDate { get; private set; }
|
|||
|
public int Cost { get; private set; }
|
|||
|
}
|