blob: 1a6e35a0e1471374e9bbe930265daa417a32b5c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace Spacebar.Db.Models;
[Table("embed_cache")]
public partial class EmbedCache
{
[Key]
[Column("id", TypeName = "character varying")]
public string Id { get; set; } = null!;
[Column("url", TypeName = "character varying")]
public string Url { get; set; } = null!;
[Column("embed")]
public string Embed { get; set; } = null!;
}
|