iWOWS/WolfOfWallStreet/Models/OnlinePlus/OnlinePlusAccount.cs

16 lines
341 B
C#
Raw Normal View History

2021-01-15 18:51:25 +03:30
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; }
}
}