Skip to content

Instantly share code, notes, and snippets.

@azaharafernandezguizan
Last active December 30, 2018 17:11
Show Gist options
  • Save azaharafernandezguizan/00a8b5b3875a2fea65234cfac84c74cf to your computer and use it in GitHub Desktop.
Save azaharafernandezguizan/00a8b5b3875a2fea65234cfac84c74cf to your computer and use it in GitHub Desktop.
DTO example on NetCore
using System;
using System.Collections.Generic;
using System.Text;
namespace MyDTOs
{
public class RecursosInfo
{
public int RecursoID { get; set; }
public string Nombre { get; set; }
public string Descripcion { get; set; }
public string Categoria { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment