Auto stash before merge of "zmiguel" and "origin/master"

This commit is contained in:
José Valdiviesso 2019-03-14 16:51:48 +00:00
parent 166384ee7f
commit 1ccc5d6ad3
2 changed files with 18 additions and 0 deletions

View File

@ -21,6 +21,8 @@ namespace api.Data
public DbSet<EventLoc> EventLocs {get;set;}
public DbSet<EventLocVisited> EventLocsVisited {get;set;}
public DbSet<Chromos> Chromos {get;set;}
public DbSet<Log>Logs{get;set;}

16
api/Models/Chromos.cs Normal file
View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
namespace api.Models
{
public class Cromos
{
public int Id{get;set;} //id
public String QRCode{get;set;} //QR
public String Nome{get;set;} //Nome
public String DescPub{get;set;} //descrição geral nao visto
public String DescVis{get;set;} //descrição visto
}
}