This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
2025-10-05 21:33:50 +02:00

34 lines
960 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace Spacebar.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; }
}