17 lines
371 B
C#
17 lines
371 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace PARR.Domain.Entities
|
|
{
|
|
[Table("Settings")]
|
|
public class Setting
|
|
{
|
|
[Key]
|
|
public required string Name { get; set; }
|
|
|
|
public required string Value { get; set; }
|
|
|
|
public required string Description { get; set; }
|
|
}
|
|
}
|