14 lines
374 B
C#
14 lines
374 B
C#
namespace SPMS.Domain.Entities;
|
|
|
|
public class AppConfig : BaseEntity
|
|
{
|
|
public long ServiceId { get; set; }
|
|
public string ConfigKey { get; set; } = string.Empty;
|
|
public string? ConfigValue { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
// Navigation
|
|
public Service Service { get; set; } = null!;
|
|
}
|