1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

[sharedlibrary] add client meta

[application] add gravatar command
This commit is contained in:
RaidMax
2018-06-01 23:48:10 -05:00
parent 2da4ec10cf
commit 9d29ddea1d
14 changed files with 744 additions and 6 deletions

View File

@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace SharedLibraryCore.Database.Models
{
/// <summary>
/// This class encapsulates any meta fields as a simple string
/// </summary>
public class EFMeta : SharedEntity
{
[Key]
public int MetaId { get; set; }
[Required]
public DateTime Created { get; set; } = DateTime.UtcNow;
[Required]
public DateTime Updated { get; set; } = DateTime.UtcNow;
[Required]
public int ClientId { get; set; }
[ForeignKey("ClientId")] // this is the client that the meta belongs to
public virtual EFClient Client { get; set; }
[Required]
[MinLength(3)]
public string Key { get; set; }
[Required]
public string Value { get; set; }
public string Extra { get; set; }
}
}