Skip to content

Instantly share code, notes, and snippets.

@andrewconnell
Created December 17, 2014 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewconnell/97e4205247ecf157f626 to your computer and use it in GitHub Desktop.
Save andrewconnell/97e4205247ecf157f626 to your computer and use it in GitHub Desktop.
Azure AD & ASP.NET MVC - Walk-Through Implementing ADAL & OWIN - PerUserWebCache.cs
using System;
using System.ComponentModel.DataAnnotations;
namespace SampleMvcAzAuth.Models {
public class PerUserWebCache {
[Key]
public int EntryId { get; set; }
public string WebUserUniqueId { get; set; }
public byte[] CacheBits { get; set; }
public DateTime LastWrite { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment