14 lines
277 B
C#
14 lines
277 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace WolfOfWallStreet.Models
|
|||
|
|
{
|
|||
|
|
public class Account
|
|||
|
|
{
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
public string PhoneNumber { get; set; }
|
|||
|
|
public string Email { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|