This commit is contained in:
mmrbnjd
2024-04-17 15:49:34 +03:30
parent f829d80851
commit 3f0a37a08b
27 changed files with 1253 additions and 79 deletions

View File

@@ -0,0 +1,28 @@
using System.Collections.Generic;
namespace Shared.DTOs
{
public class AlertDTO
{
public int Status { get; set; }
public string Message { get; set; }
public string? Path { get; set; }
public string? ViewSize { get; set; }
}
public class DashBoardDTO
{
public string? LastLoginDate { get; set; }
public List<ServiceInDashBoardDTO> AlistofServices { get; set; }=new List<ServiceInDashBoardDTO>();
public List<AlertDTO> Warning { get; set; } = new List<AlertDTO>();
public List<AlertDTO> Notifications { get; set; } = new List<AlertDTO>();
}
public class ServiceInDashBoardDTO
{
public int PermissionID { get; set; }
public string PermissionName { get; set; }
public int CalTypeID { get; set; }
public string CalTypeTitle { get; set; }
public string Total { get; set; }
public string Remaining { get; set; }
}
}