mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
14 lines
282 B
C#
14 lines
282 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MusicStore
|
|
{
|
|
public class SiteSettings
|
|
{
|
|
public string DefaultAdminUsername { get; set; }
|
|
public string DefaultAdminPassword { get; set; }
|
|
}
|
|
}
|