Skip to content

Instantly share code, notes, and snippets.

@jesulink2514
Created January 3, 2016 22:32
Show Gist options
  • Save jesulink2514/a6ad76671207f3a9ef81 to your computer and use it in GitHub Desktop.
Save jesulink2514/a6ad76671207f3a9ef81 to your computer and use it in GitHub Desktop.
Sample Class for audit sample
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace AuditSample.Models
{
public class Pizza: IAuditRequest
{
public int Id { get; set; }
public string Tipo { get; set; }
public List<string> Ingredientes { get; set; }
public string UserId { get; set; }
public string Ip { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment