erp-platform/api/src/Kurs.Platform.Domain/Entities/Tenant/Intranet/Reservation.cs

24 lines
819 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Domain/Entities/Reservation.cs
using System;
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy;
namespace Kurs.Platform.Entities;
public class Reservation : FullAuditedEntity<Guid>, IMultiTenant
{
public Guid? TenantId { get; set; }
public string Type { get; set; } // room | vehicle | equipment
public string ResourceName { get; set; }
public Guid? EmployeeId { get; set; }
public Employee Employee { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public string Purpose { get; set; } //Amaç
public int? Participants { get; set; } //Katılımcı Sayısı
public string Notes { get; set; }
public string Status { get; set; } // pending | approved | rejected | completed
}