20 lines
449 B
C#
20 lines
449 B
C#
using MyDiplom.Models;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyDiplom.ViewModels
|
|
{
|
|
public class UserViewModels:BaseViewModel
|
|
{
|
|
public ApplicationUser User { get; set; } = new ApplicationUser();
|
|
public UserViewModels()
|
|
{
|
|
User = new ApplicationUser { DisplayName = "Вася", Balance = 10.0m };
|
|
}
|
|
}
|
|
}
|