1
0

Updated project

This commit is contained in:
Michael Gordeev
2020-03-03 16:49:41 +03:00
parent cfe38cda16
commit ad8b23f727
196 changed files with 8041 additions and 2450 deletions
+16
View File
@@ -0,0 +1,16 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace MyWebsite.Models
{
public class CustomData
{
[Key]
[Required]
[Column(TypeName = "varchar(255)")]
public string Key { get; set; }
[Required]
[Column(TypeName = "varchar(255)")]
public string Value { get; set; }
}
}