WIP on Config Handling

This commit is contained in:
Janus Knudsen 2025-01-30 18:03:24 +01:00
parent 4dc03f2cbf
commit 8e6492e979
17 changed files with 314 additions and 288 deletions

View file

@ -0,0 +1,14 @@
namespace Core.Configurations.SmartConfiguration;
public class AppConfiguration
{
public long Id { get; set; }
public string Key { get; set; }
public string Value { get; set; }
public string Label { get; set; }
public string ContentType { get; set; }
public DateTime? ValidFrom { get; set; }
public DateTime? ExpiresAt { get; set; }
public DateTime? CreatedAt { get; set; }
public DateTime? ModifiedAt { get; set; }
public Guid? Etag { get; set; }
}