13 lines
297 B
C#
13 lines
297 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Iceshrimp.Backend.Core.Database.Tables;
|
|
|
|
[Table("bubble_instance")]
|
|
public class BubbleInstance
|
|
{
|
|
[Key]
|
|
[Column("host")]
|
|
[StringLength(256)]
|
|
public string Host { get; set; } = null!;
|
|
}
|