using LiteDB; using RunnersMeet.Server.Domain; namespace RunnersMeet.Server.Persistence; public class Registration : IUserData { [BsonRef("users")] public UserProfile Owner { get; set; } = new UserProfile(); [BsonRef("events")] public Event Event { get; set; } = new Event(); public RegistrationState Status { get; set; } }