18 lines
400 B
C#
18 lines
400 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Infrastructure.Dto
|
|
{
|
|
public class CredentialDto
|
|
{
|
|
public string? UserRole { get; set; }
|
|
public string? UserId { get; set; }
|
|
public bool IsMissed { get; set; }
|
|
public bool IsReschedule { get; set; }
|
|
}
|
|
}
|