Mineplex2018-withcommit/Website/LOC.Core/Model/Account/LoginAddress.cs
Jonathan Williams 3fb52c5c71 Initial Commit
2013-08-27 08:14:08 -07:00

13 lines
224 B
C#

namespace LOC.Core.Model.Account
{
using Newtonsoft.Json;
public class LoginAddress
{
[JsonIgnore]
public int LoginAddressId { get; set; }
public string Address { get; set; }
}
}