15 lines
322 B
C#
15 lines
322 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Manager.Interfaces.DTO
|
|
{
|
|
public class InstanceDTO
|
|
{
|
|
public string id { get; set; }
|
|
public string name { get; set; }
|
|
public DateTime dateCreation { get; set; }
|
|
public int? pinCode { get; set; }
|
|
}
|
|
}
|