10 lines
243 B
C#
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; }
|
|
}
|