12 lines
336 B
C#
12 lines
336 B
C#
using Indotalent.Data.Abstracts;
|
|
using Indotalent.Data.Interfaces;
|
|
|
|
namespace Indotalent.Data.Entities;
|
|
|
|
public class BookingResource : BaseEntity
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? BookingGroupId { get; set; }
|
|
public BookingGroup? BookingGroup { get; set; }
|
|
} |