22 lines
465 B
C#
22 lines
465 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.Core.Accounts
|
|
{
|
|
public class VmUser
|
|
{
|
|
public String FullName
|
|
{
|
|
get
|
|
{
|
|
return $"{FirstName} {LastName}";
|
|
}
|
|
}
|
|
public String FirstName { get; set; }
|
|
public String LastName { get; set; }
|
|
public String Email { get; set; }
|
|
public String Avatar { get; set; }
|
|
}
|
|
}
|