mirror of
https://github.com/muskit/MercuryConverter.git
synced 2026-06-02 20:24:26 -07:00
10 lines
226 B
C#
10 lines
226 B
C#
|
|
namespace MercuryConverter;
|
||
|
|
|
||
|
|
using System;
|
||
|
|
using System.Collections.ObjectModel;
|
||
|
|
using System.Collections.Specialized;
|
||
|
|
|
||
|
|
public static class Database
|
||
|
|
{
|
||
|
|
public static readonly ObservableCollection<Data.Song> Songs = new();
|
||
|
|
}
|