SCHALE.GameServer/SCHALE.Common/Database/Models/AccountTutorial.cs

13 lines
264 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
namespace SCHALE.Common.Database.Models
{
public class AccountTutorial
{
[Key]
public required long AccountServerId { get; set; }
public List<long> TutorialIds { get; set; }
}
}