9 lines
249 B
C#
9 lines
249 B
C#
namespace lxc_songlist.Models;
|
|
|
|
public sealed class SiteSetting
|
|
{
|
|
public string Key { get; set; } = string.Empty;
|
|
public string Value { get; set; } = string.Empty;
|
|
public DateTimeOffset UpdatedAt { get; set; } = DateTimeOffset.UtcNow;
|
|
}
|