Files

17 lines
342 B
C#
Raw Permalink Normal View History

2019-03-04 16:58:35 -06:00
using Raven.Identity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
2017-08-29 15:42:24 -05:00
namespace Sample.Models
{
2019-03-04 16:58:35 -06:00
public class AppUser : Raven.Identity.IdentityUser
{
/// <summary>
2019-03-04 16:58:35 -06:00
/// The user's full name.
/// </summary>
2019-03-04 16:58:35 -06:00
public string FullName { get; set; }
}
}