blob: 9a6391d40375fa16efe169990abe9ae773804abe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace Spacebar.Db.Models;
[Table("roles")]
public partial class Role
{
[Key]
[Column("id", TypeName = "character varying")]
public string Id { get; set; } = null!;
[Column("guild_id", TypeName = "character varying")]
public string GuildId { get; set; } = null!;
[Column("color")]
public int Color { get; set; }
[Column("hoist")]
public bool Hoist { get; set; }
[Column("managed")]
public bool Managed { get; set; }
[Column("mentionable")]
public bool Mentionable { get; set; }
[Column("name", TypeName = "character varying")]
public string Name { get; set; } = null!;
[Column("permissions", TypeName = "character varying")]
public string Permissions { get; set; } = null!;
[Column("position")]
public int Position { get; set; }
[Column("icon", TypeName = "character varying")]
public string? Icon { get; set; }
[Column("unicode_emoji", TypeName = "character varying")]
public string? UnicodeEmoji { get; set; }
[Column("tags")]
public string? Tags { get; set; }
[Column("flags")]
public int Flags { get; set; }
[Column("colors")]
public string Colors { get; set; } = null!;
[ForeignKey("GuildId")]
[InverseProperty("Roles")]
public virtual Guild Guild { get; set; } = null!;
[ForeignKey("RoleId")]
[InverseProperty("Roles")]
public virtual ICollection<Member> Indices { get; set; } = new List<Member>();
[ForeignKey("RolesId")]
[InverseProperty("Roles")]
public virtual ICollection<Message> Messages { get; set; } = new List<Message>();
}
|