Timothy Schenk
4bb4236eb3
All checks were successful
Build, Package and Push Images / preprocess (push) Successful in 2s
Build, Package and Push Images / build (push) Successful in 27s
Build, Package and Push Images / sbom-scan (push) Successful in 34s
Build, Package and Push Images / container-build (push) Successful in 1m21s
Build, Package and Push Images / sonarqube (push) Successful in 1m24s
Build, Package and Push Images / container-sbom-scan (push) Successful in 33s
22 lines
659 B
C#
22 lines
659 B
C#
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
|
|
|
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; }
|
|
}
|