Skip to content

Instantly share code, notes, and snippets.

@jesulink2514
Created January 3, 2016 22:27
Show Gist options
  • Save jesulink2514/4e7a671ad3e8e395207a to your computer and use it in GitHub Desktop.
Save jesulink2514/4e7a671ad3e8e395207a to your computer and use it in GitHub Desktop.
IAuditRequest - Audit Sample
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace AuditSample.Models
{
public interface IAuditRequest
{
string UserId { get; set; }
string Ip { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment