Files
server/extra/admin-api/Models/Spacebar.Models.Db/Models/RateLimit.cs
T
2026-04-18 18:26:34 +02:00

28 lines
687 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace Spacebar.Models.Db.Models;
[Table("rate_limits")]
public partial class RateLimit
{
[Key]
[Column("id")]
public long Id { get; set; }
[Column("executor_id", TypeName = "character varying")]
public string ExecutorId { get; set; } = null!;
[Column("hits")]
public int Hits { get; set; }
[Column("blocked")]
public bool Blocked { get; set; }
[Column("expires_at", TypeName = "timestamp without time zone")]
public DateTime ExpiresAt { get; set; }
}