2023-11-21 20:37:50 +00:00
|
|
|
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
2023-11-20 18:58:30 +00:00
|
|
|
|
2023-11-15 19:00:08 +00:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2023-11-22 06:59:08 +00:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
2023-11-15 19:00:08 +00:00
|
|
|
|
2023-11-14 19:07:45 +00:00
|
|
|
namespace Server.DB.Documents;
|
|
|
|
|
2023-11-22 06:59:08 +00:00
|
|
|
[Index(nameof(Id), IsUnique = true)]
|
2023-11-14 19:07:45 +00:00
|
|
|
public class GuildMember
|
|
|
|
{
|
2023-11-15 19:00:08 +00:00
|
|
|
[Key]
|
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
2023-11-14 19:07:45 +00:00
|
|
|
public Guid Id { get; set; }
|
2023-11-25 11:24:42 +00:00
|
|
|
|
|
|
|
public virtual Guid CharacterId { get; set; }
|
|
|
|
|
2023-11-22 06:59:08 +00:00
|
|
|
[DeleteBehavior(DeleteBehavior.Restrict)]
|
2023-11-25 11:24:42 +00:00
|
|
|
[ForeignKey(nameof(CharacterId))]
|
|
|
|
[Required]
|
2023-11-16 11:06:36 +00:00
|
|
|
public virtual Character Character { get; set; }
|
2023-11-25 11:24:42 +00:00
|
|
|
|
|
|
|
public virtual Guid GuildId { get; set; }
|
|
|
|
|
2023-11-22 06:59:08 +00:00
|
|
|
[DeleteBehavior(DeleteBehavior.Restrict)]
|
2023-11-25 11:24:42 +00:00
|
|
|
[ForeignKey(nameof(GuildId))]
|
|
|
|
[Required]
|
2023-11-16 11:06:36 +00:00
|
|
|
public virtual Guild Guild { get; set; }
|
2023-11-25 11:24:42 +00:00
|
|
|
|
2023-11-14 19:07:45 +00:00
|
|
|
public GuildRank Rank { get; set; }
|
|
|
|
}
|