13 lines
267 B
C#
13 lines
267 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|