13 lines
266 B
C#
13 lines
266 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 int? pinCode { get; set; }
|
|
}
|
|
}
|