19 lines
559 B
C#
Raw Normal View History

2023-05-04 12:05:13 +05:30
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; }
}
}