9 lines
248 B
C#
9 lines
248 B
C#
|
|
using Brizco.Domain.Entities.Shift;
|
|||
|
|
|
|||
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
|||
|
|
|
|||
|
|
public class ShiftPlanUserSDto : BaseDto<ShiftPlanUserSDto,ShiftPlanUser>
|
|||
|
|
{
|
|||
|
|
public Guid ShiftPlanId { get; set; }
|
|||
|
|
public Guid ApplicationUserId { get; set; }
|
|||
|
|
}
|