Files
server/extra/admin-api/Models/Spacebar.Models.Db/Models/ClientRelease.cs
2026-01-17 03:22:44 +01:00

34 lines
967 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("client_release")]
public partial class ClientRelease
{
[Key]
[Column("id", TypeName = "character varying")]
public string Id { get; set; } = null!;
[Column("name", TypeName = "character varying")]
public string Name { get; set; } = null!;
[Column("pub_date", TypeName = "timestamp without time zone")]
public DateTime PubDate { get; set; }
[Column("url", TypeName = "character varying")]
public string Url { get; set; } = null!;
[Column("platform", TypeName = "character varying")]
public string Platform { get; set; } = null!;
[Column("enabled")]
public bool Enabled { get; set; }
[Column("notes", TypeName = "character varying")]
public string? Notes { get; set; }
}