feat: add database connections, initial migration and early CLI tooling
All checks were successful
Update changelog / changelog (push) Successful in 25s

This commit is contained in:
2025-12-09 01:46:05 +01:00
parent ad3cd6710d
commit f648a73cb2
26 changed files with 2399 additions and 52 deletions

12
Entities/Radio.cs Normal file
View File

@@ -0,0 +1,12 @@
namespace Shadow.Entities;
public class Radio
{
required public int Id { get; set; }
required public string Name { get; set; }
required public string NormalizedName { get; set; }
public string? Homepage { get; set; } = null;
required public string Url { get; set; }
required public int UserId { get; set; }
required public User User { get; set; }
}