34 lines
1.2 KiB
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 bool? isAssistant { get; set; }
public string? subscriptionPlanId { get; set; }
public SubscriptionPlanDTO? subscriptionPlan { get; set; }
public int? aiRequestsThisMonth { get; set; }
public string? aiUsageMonthKey { get; set; }
public long? storageQuotaBytes { get; set; }
public int? aiRequestsPerMonth { get; set; }
public bool? hasStats { get; set; }
public int? statsHistoryDays { get; set; }
public bool? hasAdvancedStats { get; set; }
public List<ApplicationInstanceDTO> applicationInstanceDTOs { get; set; }
}
}