Files
RavenDB.Identity/Samples/Mvc/Sample.Mvc/Models/RegisterModel.cs
T
Judah Himango CW c05b451d20 Added MVC sample.
2019-06-25 17:39:36 -05:00

14 lines
263 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Sample.Mvc.Models
{
public class RegisterModel
{
public string Email { get; set; }
public string Password { get; set; }
}
}