123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Text;
- using Microsoft.EntityFrameworkCore;
- namespace BanTur.Core.Entity
- {
- [Index(nameof(Key), IsUnique = true)]
- public class ConfigEntry
- {
- [Key]
- public string Key { get; set; }
- public string Value { get; set; }
- public string Type { get; set; }
- }
- }
|