16 lines
550 B
C#
16 lines
550 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using DysonNetwork.Shared.Data;
|
|
|
|
namespace DysonNetwork.Pass.Leveling;
|
|
|
|
public class ExperienceRecord : ModelBase
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
[MaxLength(1024)] public string ReasonType { get; set; } = string.Empty;
|
|
[MaxLength(1024)] public string Reason { get; set; } = string.Empty;
|
|
public long Delta { get; set; }
|
|
public double BonusMultiplier { get; set; }
|
|
|
|
public Guid AccountId { get; set; }
|
|
public Account.Account Account { get; set; } = null!;
|
|
} |