using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace GMCabsDriverAssistant.Models
|
|
{
|
|
public class ValidateTokenResponseDto
|
|
{
|
|
public bool Result { get; set; }
|
|
public bool CanAcceptBookings { get; set; }
|
|
public bool CanUpdateLicence { get; set; }
|
|
public bool CanScanVouchers { get; set; }
|
|
public bool CanViewCoupons { get; set; }
|
|
public bool CanViewSettings { get; set; }
|
|
public bool CanViewHome { get; set; }
|
|
public bool CanViewJobHistory { get; set; }
|
|
}
|
|
}
|