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