continuity/Continuity.AuthServer/DB/Documents/Guild.cs

23 lines
659 B
C#
Raw Normal View History

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
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace Server.DB.Documents;
[Index(nameof(Name), IsUnique = true)]
[Index(nameof(Id), IsUnique = true)]
public class Guild
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public Guid Id { get; set; }
[MaxLength(16)] public string Name { get; set; }
public string Notice { get; set; }
[DeleteBehavior(DeleteBehavior.Cascade)]
public virtual ICollection<GuildMember> GuildMembers { get; set; }
}