mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 09:58:53 -05:00
11 lines
246 B
C#
11 lines
246 B
C#
using System.IO;
|
|
|
|
namespace FeedCenter.Data;
|
|
|
|
public static class Database
|
|
{
|
|
public static string DatabaseFile { get; set; }
|
|
public static string DatabasePath { get; set; }
|
|
|
|
public static bool Exists => File.Exists(DatabaseFile);
|
|
} |