Api/Brizco.Domain/Entities/Shift/ShiftPlanUser.cs

22 lines
560 B
C#

using Brizco.Domain.Entities.User;
namespace Brizco.Domain.Entities.Shift;
public class ShiftPlanUser : ApiEntity
{
public ShiftPlanUser()
{
}
public ShiftPlanUser(Guid shiftPlanId, Guid applicationUserId)
{
ShiftPlanId = shiftPlanId;
ApplicationUserId = applicationUserId;
}
public Guid ShiftPlanId { get; private set; }
public ShiftPlan? ShiftPlan { get; private set; }
public Guid ApplicationUserId { get; private set; }
public ApplicationUser? ApplicationUser { get; private set; }
}