BotSharp/BotSharp.Core/Accounts/VmUser.cs

22 lines
465 B
C#
Raw Normal View History

2019-03-07 15:25:30 +00:00
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; }
}
}