fix Синхронизации
This commit is contained in:
21
PARR.DAL/Models/AIHIT/Setting.cs
Normal file
21
PARR.DAL/Models/AIHIT/Setting.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using PARR.DAL.Models.Base;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace PARR.DAL.Models.AIHIT
|
||||
{
|
||||
[Table("Settings", Schema = "AIHIT")]
|
||||
public class Setting : IBase
|
||||
{
|
||||
[Key]
|
||||
public Guid Id { get; set; }
|
||||
public DateTimeOffset DateCreated { get; set; }
|
||||
public DateTimeOffset? DateModified { get; set; }
|
||||
public string? Group { get; set; }
|
||||
public required string Name { get; set; }
|
||||
public required string Value { get; set; }
|
||||
public string? Description { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user