OnProfNext/OnProfNext.Shared/Models/DTOs/BookingDto.cs
2025-10-17 10:41:53 +02:00

23 lines
680 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OnProfNext.Shared.Models.DTOs
{
public class BookingDto
{
public int Id { get; set; }
public int OrderId { get; set; }
public string? OrderTitle { get; set; }
public int UserId { get; set; }
public string? Username { get; set; }
public DateTime Date { get; set; } = DateTime.UtcNow;
public decimal Hours { get; set; }
public string? Description { get; set; }
public int MandantId { get; set; }
public bool IsPending { get; set; }
}
}