18 lines
493 B
C#

using System;
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 isVR { get; set; }
}
}