initial commit

This commit is contained in:
2026-07-21 14:35:37 +07:00
commit 0027997ff9
798 changed files with 59083 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
using Indotalent.Data.Abstracts;
using Indotalent.Data.Interfaces;
using Indotalent.Data.Enums;
namespace Indotalent.Data.Entities;
public class Booking : BaseEntity, IHasAutoNumber
{
public string? Subject { get; set; }
public string? AutoNumber { get; set; }
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
public string? StartTimezone { get; set; }
public string? EndTimezone { get; set; }
public string? Location { get; set; }
public string? Description { get; set; }
public bool? IsAllDay { get; set; }
public bool? IsReadOnly { get; set; }
public bool? IsBlock { get; set; }
public string? RecurrenceRule { get; set; }
public string? RecurrenceID { get; set; }
public string? FollowingID { get; set; }
public string? RecurrenceException { get; set; }
public BookingStatus Status { get; set; }
public string? BookingResourceId { get; set; }
public BookingResource? BookingResource { get; set; }
}