initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using Indotalent.Data.Abstracts;
|
||||
using Indotalent.Data.Interfaces;
|
||||
|
||||
namespace Indotalent.Data.Entities;
|
||||
|
||||
public class BookingResource : BaseEntity, IMultiTenant
|
||||
{
|
||||
public string? TenantId { get; set; }
|
||||
public string? Name { get; set; }
|
||||
public string? Description { get; set; }
|
||||
public string? BookingGroupId { get; set; }
|
||||
public BookingGroup? BookingGroup { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user