Iceshrimp.NET/Iceshrimp.Backend/Core/Database/Tables/Poll.cs
2024-01-07 19:43:41 +01:00

58 lines
No EOL
1.5 KiB
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
using NpgsqlTypes;
namespace Iceshrimp.Backend.Core.Database.Tables;
[Table("poll")]
[Index("UserId")]
[Index("UserHost")]
public class Poll {
[Key]
[Column("noteId")]
[StringLength(32)]
public string NoteId { get; set; } = null!;
[Column("expiresAt")] public DateTime? ExpiresAt { get; set; }
[Column("multiple")] public bool Multiple { get; set; }
[Column("choices", TypeName = "character varying(256)[]")]
public List<string> Choices { get; set; } = null!;
[Column("votes")] public List<int> Votes { get; set; } = null!;
/// <summary>
/// [Denormalized]
/// </summary>
[Column("userId")]
[StringLength(32)]
public string UserId { get; set; } = null!;
/// <summary>
/// [Denormalized]
/// </summary>
[Column("userHost")]
[StringLength(512)]
public string? UserHost { get; set; }
[ForeignKey("NoteId")]
[InverseProperty("Poll")]
public virtual Note Note { get; set; } = null!;
/// <summary>
/// [Denormalized]
/// </summary>
[Column("noteVisibility")]
public PollNoteVisibility NoteVisibility { get; set; }
[PgName("poll_notevisibility_enum")]
public enum PollNoteVisibility {
[PgName("public")] Public,
[PgName("home")] Home,
[PgName("followers")] Followers,
[PgName("specified")] Specified,
[PgName("hidden")] Hidden
}
}