Thomas Fransolet c8c5902292 misc + fixs
2025-08-14 16:30:03 +02:00

22 lines
650 B
C#

using System;
using System.Collections.Generic;
namespace ManagerService.DTOs
{
public class InstanceDTO
{
public string id { get; set; }
public string name { get; set; }
public DateTime? dateCreation { get; set; }
public string pinCode { get; set; }
public bool isPushNotification { get; set; }
public bool isStatistic { get; set; }
public bool isMobile { get; set; }
public bool isTablet { get; set; }
public bool isWeb { get; set; }
public bool isVR { get; set; }
public List<ApplicationInstanceDTO> applicationInstanceDTOs { get; set; }
}
}