18 lines
415 B
C#
18 lines
415 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PuferFishDataBase.Models;
|
|
|
|
internal class Points
|
|
{
|
|
public string Id { get; set; } = Guid.NewGuid().ToString();
|
|
public string BuyerId { get; set; }
|
|
public DateTime PointsDate { get; set; }
|
|
public double BuyerPoints { get; set; }
|
|
|
|
public Buyer? Buyer { get; set; }
|
|
}
|