using System; using System.Collections.Generic; using System.Text; namespace GMCabsDriverAssistant.Models { public class UnreadCountResponseDto { public int StatusCode { get; set; } public int UnreadNotificationCount { get; set; } } }