iWOWS/WolfOfWallStreet/Models/OnlinePlus/OnlinePlusAccount.cs

16 lines
341 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WolfOfWallStreet.Models.OnlinePlus
{
public class OnlinePlusAccount
{
public string Name { get; set; }
public string PhoneNumber { get; set; }
public string email { get; set; }
public string Title { get; set; }
}
}