Torma Kristóf
8347b10401
All checks were successful
continuous-integration/drone/push Build is passing
20 lines
394 B
C#
20 lines
394 B
C#
using Microsoft.AspNetCore.Identity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HanyadikHetVan.Data.Entities
|
|
{
|
|
public class Purse
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public virtual IdentityUser User { get; set; }
|
|
|
|
public String UserId { get; set; }
|
|
|
|
public int Balance { get; set; }
|
|
}
|
|
}
|