Files
SVSimServer/SVSim.Database/Entities/Story/StoryChapterReward.cs
gamer147 5e7a65fe5a Story
2026-05-25 14:36:12 -04:00

10 lines
243 B
C#

namespace SVSim.Database.Entities.Story;
[Microsoft.EntityFrameworkCore.Owned]
public class StoryChapterReward
{
public int RewardType { get; set; }
public long RewardDetailId { get; set; }
public int RewardNumber { get; set; }
}